Skip to content

Commit 7b37c2d

Browse files
authored
Fix tf Travis complaint
1 parent a286300 commit 7b37c2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imblearn/ensemble/easy_ensemble_generalization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class EasyEnsembleGeneralization(BaseEnsemble, ClassifierMixin):
7070
>>> y = np.array([1, 1, 1, 2, 2, 2])
7171
>>> eeg = EEG(voting='hard', random_state=0)
7272
>>> eeg.fit(X,y)
73-
>>> eeg.predict(X)
73+
>>> print(eeg.predict(X))
7474
[1 1 1 2 2 2]
7575
>>>
7676
"""

0 commit comments

Comments
 (0)