Skip to content

Commit c6deacd

Browse files
Update packages/python/plotly/plotly/express/_core.py
Co-authored-by: Alex Johnson <[email protected]>
1 parent e301999 commit c6deacd

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ def build_dataframe(args, constructor):
13241324
# self.to_pandas(...)
13251325
if not hasattr(df_not_pandas, "to_pandas"):
13261326
raise exc
1327-
df_not_pandas.to_pandas()
1327+
df_pandas = df_not_pandas.to_pandas()
13281328
args["data_frame"] = df_pandas
13291329
elif hasattr(args["data_frame"], "to_pandas"):
13301330
args["data_frame"] = args["data_frame"].to_pandas()

0 commit comments

Comments
 (0)