Skip to content

Commit 7296a47

Browse files
committed
fix: no tqdm
1 parent 265b84c commit 7296a47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jaxadi/_stages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def squeeze(stages: List[Stage], num_threads=1) -> List[Stage]:
198198
for i, stage in enumerate(stages):
199199
if len(stage.ops) != 0 and stage.ops[0].op == OP_OUTPUT:
200200
working_stages.append((i, stage))
201-
for i in tqdm(range(len(working_stages))):
201+
for i in range(len(working_stages)):
202202
i, stage = working_stages[i]
203203
stage.value = recursive_subs(stages, i)
204204
new_stages.append(stage)

0 commit comments

Comments
 (0)