Skip to content

Commit c9742e0

Browse files
Update packages/python/plotly/plotly/express/_core.py
Co-authored-by: Emmanuelle Gouillart <[email protected]>
1 parent 2f050f2 commit c9742e0

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
@@ -1391,7 +1391,7 @@ def build_dataframe(args, constructor):
13911391
dtype = None
13921392
for v in wide_value_vars:
13931393
v_dtype = df_output[v].dtype.kind
1394-
v_dtype = "number" if v_dtype in ["i", "f"] else v_dtype
1394+
v_dtype = "number" if v_dtype in ["i", "f", "u"] else v_dtype
13951395
if dtype is None:
13961396
dtype = v_dtype
13971397
elif dtype != v_dtype:

0 commit comments

Comments
 (0)