So I am using pandas version 2.2.0 'display.width' did not work for me. But max_colwidth did. No more...
'display.width'
max_colwidth
Try:- pd.set_option("max_colwidth", 500)
pd.set_option("max_colwidth", 500)
Check what pandas version you have installed with print(pd.__version__)
print(pd.__version__)