Skip to content

Commit

Permalink
fix progress bar fox non parallel upload
Browse files Browse the repository at this point in the history
  • Loading branch information
dbernaciak committed Dec 22, 2023
1 parent b737000 commit 0586c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fusion/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ def _upload(row):
)
else:
if show_progress:
with tqdm_joblib(tqdm(total=len(loop.iterrows()))) as _:
with tqdm_joblib(tqdm(total=len(loop))) as _:
res = [_upload(row) for index, row in loop.iterrows()]
else:
res = [_upload(row) for index, row in loop.iterrows()]
Expand Down

0 comments on commit 0586c3a

Please sign in to comment.