DDF is converting column of lists/dicts to strings

Hi @pramodhrachuri, welcome to Dask discourse!

The problem only comes from the configuration key you are using! If you want to disable Dask automatically converting object to PyArrow string, the correct code is this one:

dask.config.set({"dataframe.convert-string": False})

So without dask. at the beginning.