Skip to content

Commit d0f841d

Browse files
authored
Update eddy_feature.py
fix indent
1 parent 00964ae commit d0f841d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/py_eddy_tracker/eddy_feature.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def __init__(self, x, y, z, levels, wrap_x=False, keep_unclose=False):
444444
for contour in contour_to_split._iter_connected_components():
445445
# Contour with less vertices than 4 are popped
446446
if contour.vertices.shape[0] < 4:
447-
continue
447+
continue
448448
# Remove unclosed path
449449
d_closed = (
450450
(contour.vertices[0, 0] - contour.vertices[-1, 0]) ** 2

0 commit comments

Comments
 (0)