Skip to content

Commit 90cdf43

Browse files
bosdbosd
authored andcommitted
fix(tests): Address RUF059 linting errors in export tests
Rename unused unpacked variables with an underscore prefix to satisfy the RUF059 linting rule.
1 parent 747d8e5 commit 90cdf43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_export_threaded.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@ def test_export_auto_enables_read_mode_for_selection_field(
866866
)
867867

868868
# --- Assert ---
869-
init_args, init_kwargs = mock_rpc_thread_class.call_args
869+
_init_args, init_kwargs = mock_rpc_thread_class.call_args
870870
assert init_kwargs.get("technical_names") is True, "Read mode was not triggered"
871871

872872
assert result_df is not None
@@ -916,7 +916,7 @@ def test_export_auto_enables_read_mode_for_binary_field(
916916
)
917917

918918
# --- Assert ---
919-
init_args, init_kwargs = mock_rpc_thread_class.call_args
919+
_init_args, init_kwargs = mock_rpc_thread_class.call_args
920920
assert init_kwargs.get("technical_names") is True, "Read mode was not triggered"
921921

922922
assert result_df is not None

0 commit comments

Comments
 (0)