Skip to content

Commit 5da2df7

Browse files
remove assert from pd.concat refactoring in _core
1 parent 0f155ec commit 5da2df7

File tree

1 file changed

+0
-2
lines changed
  • packages/python/plotly/plotly/express

1 file changed

+0
-2
lines changed

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

-2
Original file line numberDiff line numberDiff line change
@@ -1634,9 +1634,7 @@ def aggfunc_continuous(x):
16341634
df_tree["parent"] = df_tree["parent"].str.rstrip("/")
16351635
if cols:
16361636
df_tree[cols] = dfg[cols]
1637-
df_all_trees_old = df_all_trees.append(df_tree, ignore_index=True)
16381637
df_all_trees = pd.concat([df_all_trees, df_tree], ignore_index=True)
1639-
assert df_all_trees.equals(df_all_trees_old)
16401638

16411639
# we want to make sure than (?) is the first color of the sequence
16421640
if args["color"] and discrete_color:

0 commit comments

Comments
 (0)