Skip to content

Commit a6a8ed8

Browse files
author
Maximilien Lucille
committed
corrected for pep8 conformity
1 parent bbab027 commit a6a8ed8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sklearn_questions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
class OneNearestNeighbor(ClassifierMixin, BaseEstimator):
3232
"""OneNearestNeighbor classifier.
3333
34-
This classifier uses the 1-nearest neighbor method:
35-
it assigns a new data point to the same class as the closest sample
36-
in the training set, with closeness determined by Euclidean distance
34+
This classifier uses the 1-nearest neighbor method:
35+
it assigns a new data point to the same class as the closest sample
36+
in the training set, with closeness determined by Euclidean distance
3737
"""
3838

3939
def __init__(self): # noqa: D107

0 commit comments

Comments
 (0)