Skip to content

Commit c216146

Browse files
committed
Small fix to still allow lists for hover data
1 parent 8c1c992 commit c216146

File tree

1 file changed

+1
-1
lines changed
  • packages/python/plotly/plotly/express

1 file changed

+1
-1
lines changed

Diff for: packages/python/plotly/plotly/express/_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1305,7 +1305,7 @@ def build_dataframe(args, constructor):
13051305
):
13061306
args[field] = [args[field]]
13071307
else:
1308-
list(args[field])
1308+
args[field] = list(args[field])
13091309

13101310
# Cast data_frame argument to DataFrame (it could be a numpy array, dict etc.)
13111311
df_provided = args["data_frame"] is not None

0 commit comments

Comments
 (0)