Skip to content

Commit

Permalink
fix: remove tqdm from inner iteration (debugging code)
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Mar 13, 2024
1 parent 7e3b873 commit a9e9665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kimimaro/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def cross_sectional_area(
normal = normals[i,:]
normal /= np.linalg.norm(normal)

for i, vert in tqdm(enumerate(path)):
for i, vert in enumerate(path):
if np.any(vert < 0) or np.any(vert > shape):
continue

Expand Down

0 comments on commit a9e9665

Please sign in to comment.