Skip to content

Commit 0de85a7

Browse files
committed
PEP8
1 parent 0073f9d commit 0de85a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

imblearn/utils/tests/test_validation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,9 +377,9 @@ def test_hash_X_y():
377377
@pytest.mark.parametrize(
378378
"sampling_strategy, sampling_type, expected_result",
379379
[({3: 25, 1: 25, 2: 25}, 'under-sampling',
380-
OrderedDict({1: 25, 2: 25, 3:25})),
380+
OrderedDict({1: 25, 2: 25, 3: 25})),
381381
({3: 100, 1: 100, 2: 100}, 'over-sampling',
382-
OrderedDict({1:50, 2:0, 3:75}))])
382+
OrderedDict({1: 50, 2: 0, 3: 75}))])
383383
def test_sampling_strategy_check_order(sampling_strategy, sampling_type,
384384
expected_result):
385385
# We pass on purpose a non sorted dictionary and check that the resulting

0 commit comments

Comments
 (0)