Skip to content

Commit e3ec1e2

Browse files
committed
ordereddict
1 parent 0bb6493 commit e3ec1e2

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

packages/python/plotly/plotly/express/_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ def build_dataframe(args, attrables, array_attrables):
906906
for field in args:
907907
if field in array_attrables and args[field] is not None:
908908
args[field] = (
909-
dict(args[field])
909+
OrderedDict(args[field])
910910
if isinstance(args[field], dict)
911911
else list(args[field])
912912
)

0 commit comments

Comments
 (0)