Skip to content

Commit cda9e6e

Browse files
committed
fix flake8
1 parent 60e74be commit cda9e6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

metric_learn/sdml.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ def _fit(self, pairs, y):
8686
Theta0=theta0, Sigma0=sigma0)
8787
else:
8888
_, M, *_ = graphical_lasso(emp_cov, alpha=self.sparsity_param,
89-
verbose=self.verbose,
90-
cov_init=sigma0)
89+
verbose=self.verbose,
90+
cov_init=sigma0)
9191
raised_error = None
9292
w_mahalanobis, _ = np.linalg.eigh(M)
9393
not_spd = any(w_mahalanobis < 0.)

0 commit comments

Comments
 (0)