Skip to content

Commit 4588a15

Browse files
committed
format
1 parent 5bbe1ff commit 4588a15

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

imblearn/ensemble/tests/test_easy_ensemble.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,7 @@ def test_bagging_with_pipeline():
104104
)
105105
estimator = EasyEnsembleClassifier(
106106
n_estimators=2,
107-
estimator=make_pipeline(
108-
SelectKBest(k=1), AdaBoostClassifier()
109-
),
107+
estimator=make_pipeline(SelectKBest(k=1), AdaBoostClassifier()),
110108
)
111109
estimator.fit(X, y).predict(X)
112110

0 commit comments

Comments
 (0)