Skip to content

Commit 3941a4b

Browse files
committed
COSMIT pep8
1 parent c0a0578 commit 3941a4b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

sklearn/linear_model/isotonic_regression_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def isotonic_regression(y, weight=None, y_min=None, y_max=None):
4343
4444
References
4545
----------
46-
"Active set algorithms for isotonic regression; A unifying framework"
46+
"Active set algorithms for isotonic regression; A unifying framework"
4747
by Michael J. Best and Nilotpal Chakravarti, section 3.
4848
"""
4949
if weight is None:

sklearn/mixture/gmm.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@
1010
# Bertrand Thirion <[email protected]>
1111

1212
import numpy as np
13-
import warnings
1413

1514
from ..base import BaseEstimator
16-
from ..utils import check_random_state, deprecated
15+
from ..utils import check_random_state
1716
from ..utils.extmath import logsumexp, pinvh
1817
from .. import cluster
1918

sklearn/neighbors/unsupervised.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ class NearestNeighbors(NeighborsBase, KNeighborsMixin,
6060
>>> neigh.fit(samples) #doctest: +ELLIPSIS
6161
NearestNeighbors(...)
6262
63-
>>> neigh.kneighbors([[0, 0, 1.3]], 2, return_distance=False) #doctest: +ELLIPSIS
63+
>>> neigh.kneighbors([[0, 0, 1.3]], 2, return_distance=False)
64+
... #doctest: +ELLIPSIS
6465
array([[2, 0]]...)
6566
6667
>>> neigh.radius_neighbors([0, 0, 1.3], 0.4, return_distance=False)

0 commit comments

Comments
 (0)