From 036b91ece6f2ac3fc707609fee4fa6390fdb1c83 Mon Sep 17 00:00:00 2001 From: Michael Akerman Date: Tue, 20 Aug 2024 15:19:59 +0200 Subject: [PATCH] Fix linting error due to whitespace Signed-off-by: Michael Akerman --- modin/tests/core/storage_formats/pandas/test_internals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modin/tests/core/storage_formats/pandas/test_internals.py b/modin/tests/core/storage_formats/pandas/test_internals.py index 1d250b0b17c..0ebc9f4eef8 100644 --- a/modin/tests/core/storage_formats/pandas/test_internals.py +++ b/modin/tests/core/storage_formats/pandas/test_internals.py @@ -2797,7 +2797,7 @@ def dataframe_test_default_property(df): def test_daemonic_worker_protection(modify_config): # Test for issue #7346, wherein some operations on Dask cause a second submission of a task to # the Dask client from the worker scope, which should not cause a new client to be created - + def submission_triggering_row_operation(row): row_to_dict = row.to_dict() dict_to_row = pd.Series(row_to_dict)