From 1625d35aa0c7cca227ebcf0bf9ead746165820d5 Mon Sep 17 00:00:00 2001 From: Guy Rosin Date: Tue, 15 Aug 2023 11:04:06 +0300 Subject: [PATCH] Support python<3.8 --- .../plotly/plotly/tests/test_optional/test_px/test_px_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/python/plotly/plotly/tests/test_optional/test_px/test_px_input.py b/packages/python/plotly/plotly/tests/test_optional/test_px/test_px_input.py index a11fe276e3..7c9ad6ac1e 100644 --- a/packages/python/plotly/plotly/tests/test_optional/test_px/test_px_input.py +++ b/packages/python/plotly/plotly/tests/test_optional/test_px/test_px_input.py @@ -293,7 +293,7 @@ def __dataframe__(self): ) as mock_from_dataframe: build_dataframe(args, go.Scatter) mock_from_dataframe.assert_called_once_with(interchange_dataframe_reduced) - assert set(interchange_dataframe.select_columns_by_name.call_args.args[0]) == { + assert set(interchange_dataframe.select_columns_by_name.call_args[0][0]) == { "petal_width", "sepal_length", }