We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c1c992 commit c216146Copy full SHA for c216146
packages/python/plotly/plotly/express/_core.py
@@ -1305,7 +1305,7 @@ def build_dataframe(args, constructor):
1305
):
1306
args[field] = [args[field]]
1307
else:
1308
- list(args[field])
+ args[field] = list(args[field])
1309
1310
# Cast data_frame argument to DataFrame (it could be a numpy array, dict etc.)
1311
df_provided = args["data_frame"] is not None
0 commit comments