We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e301999 commit c6deacdCopy full SHA for c6deacd
packages/python/plotly/plotly/express/_core.py
@@ -1324,7 +1324,7 @@ def build_dataframe(args, constructor):
1324
# self.to_pandas(...)
1325
if not hasattr(df_not_pandas, "to_pandas"):
1326
raise exc
1327
- df_not_pandas.to_pandas()
+ df_pandas = df_not_pandas.to_pandas()
1328
args["data_frame"] = df_pandas
1329
elif hasattr(args["data_frame"], "to_pandas"):
1330
args["data_frame"] = args["data_frame"].to_pandas()
0 commit comments