Skip to content

Commit 65e794a

Browse files
author
William de Vazelhes
committed
FIX fix PEP8 errors
1 parent abea7de commit 65e794a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metric_learn/mmc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ def transformer_from_metric(self, metric):
371371
return np.sqrt(metric)
372372
else:
373373
w, V = np.linalg.eigh(metric)
374-
return V.T * np.sqrt(np.maximum(0, w[:,None]))
374+
return V.T * np.sqrt(np.maximum(0, w[:, None]))
375375

376376

377377
class MMC(_BaseMMC, _PairsClassifierMixin):

0 commit comments

Comments
 (0)