Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeceglie committed Aug 5, 2024
1 parent ad491fe commit 26984ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdtools/test/filtering_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def test_clip_filter(generate_power_time_series_clipping, mocker):
call_args = mock_logic_clip_filter.call_args

# Deal with change in call_args after python 3.7
if isinstance(call_args, tuple): # case for 3.7
if isinstance(call_args, tuple): # case for 3.7
actual_kwargs = call_args[1]
else:
actual_kwargs = call_args.kwargs
Expand Down

0 comments on commit 26984ce

Please sign in to comment.