Skip to content

Commit 66a12ed

Browse files
Fix CI build - flake8 E231 (#304)
1 parent eb878d6 commit 66a12ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ def test_same_with_or_without_preprocessor(estimator, build_dataset):
931931
assert np.array(output_with_prep == output_with_prep_formed).all()
932932

933933
# test score_pairs
934-
idx1 = np.array([[0, 2],[5, 3]], dtype=int)
934+
idx1 = np.array([[0, 2], [5, 3]], dtype=int)
935935
output_with_prep = estimator_with_preprocessor.score_pairs(
936936
indicators_to_transform[idx1])
937937
output_without_prep = estimator_without_preprocessor.score_pairs(

0 commit comments

Comments
 (0)