Skip to content

Commit 5228f05

Browse files
TimotheeMathieurth
andauthored
MAINT Update black to 20.8b1 (#72)
Co-authored-by: Roman Yurchak <rth.yurchak@gmail.com>
1 parent 48bff71 commit 5228f05

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
jobs:
44
python3:
55
docker:
6-
- image: circleci/python:3.6.1
6+
- image: circleci/python:3.7.6
77
steps:
88
- checkout
99
- run:
@@ -36,7 +36,7 @@ jobs:
3636

3737
lint:
3838
docker:
39-
- image: circleci/python:3.6.1
39+
- image: circleci/python:3.7.6
4040
steps:
4141
- checkout
4242
- run:

sklearn_extra/cluster/_k_medoids.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class KMedoids(BaseEstimator, ClusterMixin, TransformerMixin):
4141
with the smallest sum distance to every other point. 'k-medoids++'
4242
follows an approach based on k-means++_, and in general, gives initial
4343
medoids which are more separated than those generated by the other methods.
44-
44+
4545
.. _k-means++: https://theory.stanford.edu/~sergei/papers/kMeansPP-soda.pdf
4646
4747
max_iter : int, optional, default : 300
@@ -105,7 +105,7 @@ class KMedoids(BaseEstimator, ClusterMixin, TransformerMixin):
105105
-----
106106
Since all pairwise distances are calculated and stored in memory for
107107
the duration of fit, the space complexity is O(n_samples ** 2).
108-
108+
109109
"""
110110

111111
def __init__(

sklearn_extra/kernel_methods/_eigenpro.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ def __init__(
616616
)
617617

618618
def fit(self, X, Y):
619-
""" Train eigenpro classification model
619+
"""Train eigenpro classification model
620620
621621
Parameters
622622
----------
@@ -629,7 +629,7 @@ def fit(self, X, Y):
629629
Returns
630630
-------
631631
self : returns an instance of self.
632-
"""
632+
"""
633633
X, Y = check_X_y(
634634
X,
635635
Y,

0 commit comments

Comments
 (0)