Skip to content

Commit e7ccf10

Browse files
committed
DOC fix docstring
1 parent 6a41efc commit e7ccf10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

imblearn/under_sampling/prototype_selection/edited_nearest_neighbours.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class EditedNearestNeighbours(BaseCleaningSampler):
9292
>>> from collections import Counter
9393
>>> from sklearn.datasets import make_classification
9494
>>> from imblearn.under_sampling import \
95-
EditedNearestNeighbours # doctest: +NORMALIZE_WHITESPACE
95+
EditedNearestNeighbours # doctest: +NORMALIZE_WHITESPACE
9696
>>> X, y = make_classification(n_classes=2, class_sep=2,
9797
... weights=[0.1, 0.9], n_informative=3, n_redundant=1, flip_y=0,
9898
... n_features=20, n_clusters_per_class=1, n_samples=1000, random_state=10)
@@ -282,7 +282,7 @@ class RepeatedEditedNearestNeighbours(BaseCleaningSampler):
282282
>>> from collections import Counter
283283
>>> from sklearn.datasets import make_classification
284284
>>> from imblearn.under_sampling import \
285-
RepeatedEditedNearestNeighbours # doctest : +NORMALIZE_WHITESPACE
285+
RepeatedEditedNearestNeighbours # doctest : +NORMALIZE_WHITESPACE
286286
>>> X, y = make_classification(n_classes=2, class_sep=2,
287287
... weights=[0.1, 0.9], n_informative=3, n_redundant=1, flip_y=0,
288288
... n_features=20, n_clusters_per_class=1, n_samples=1000, random_state=10)

0 commit comments

Comments
 (0)