Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Feb 18, 2023
1 parent a889515 commit 12609dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mlstatpy/ml/voronoi.py
Expand Up @@ -75,7 +75,7 @@ def voronoi_estimation_from_lr(L, B, C=None, D=None, cl=0, qr=True, max_iter=Non
for j in range(i + 1, L.shape[0]):
li = L[i, :]
lj = L[j, :]
c = (li - lj)
c = li - lj
nc = (c.T @ c) ** 0.5

# first condition
Expand Down

0 comments on commit 12609dc

Please sign in to comment.