Skip to content

Commit a9e9665

Browse files
fix: remove tqdm from inner iteration (debugging code)
1 parent 7e3b873 commit a9e9665

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kimimaro/utility.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def cross_sectional_area(
160160
normal = normals[i,:]
161161
normal /= np.linalg.norm(normal)
162162

163-
for i, vert in tqdm(enumerate(path)):
163+
for i, vert in enumerate(path):
164164
if np.any(vert < 0) or np.any(vert > shape):
165165
continue
166166

0 commit comments

Comments
 (0)