Skip to content

Commit 12609dc

Browse files
committed
lint
1 parent a889515 commit 12609dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mlstatpy/ml/voronoi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def voronoi_estimation_from_lr(L, B, C=None, D=None, cl=0, qr=True, max_iter=Non
7575
for j in range(i + 1, L.shape[0]):
7676
li = L[i, :]
7777
lj = L[j, :]
78-
c = (li - lj)
78+
c = li - lj
7979
nc = (c.T @ c) ** 0.5
8080

8181
# first condition

0 commit comments

Comments
 (0)