Skip to content

Commit 3659f27

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b461e85 commit 3659f27

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

digital_image_processing/morphological_operations/skeletonization_operation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ def skeletonize_image(image: np.ndarray) -> np.ndarray:
148148
changing1 = changing2 = [(-1, -1)]
149149

150150
while changing1 or changing2:
151-
152151
# Step 1: Points to be removed in the first sub-iteration
153152
changing1 = []
154153
rows, cols = img.shape

0 commit comments

Comments
 (0)