Skip to content

Commit 1625d35

Browse files
committed
Support python<3.8
1 parent f251f08 commit 1625d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: packages/python/plotly/plotly/tests/test_optional/test_px/test_px_input.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def __dataframe__(self):
293293
) as mock_from_dataframe:
294294
build_dataframe(args, go.Scatter)
295295
mock_from_dataframe.assert_called_once_with(interchange_dataframe_reduced)
296-
assert set(interchange_dataframe.select_columns_by_name.call_args.args[0]) == {
296+
assert set(interchange_dataframe.select_columns_by_name.call_args[0][0]) == {
297297
"petal_width",
298298
"sepal_length",
299299
}

0 commit comments

Comments
 (0)