From 0586c3a57a77d245e571e0972f7fa08da3926dd0 Mon Sep 17 00:00:00 2001 From: dbernaciak Date: Fri, 22 Dec 2023 07:40:28 -0500 Subject: [PATCH] fix progress bar fox non parallel upload --- fusion/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fusion/utils.py b/fusion/utils.py index defab08..d3d0c0d 100644 --- a/fusion/utils.py +++ b/fusion/utils.py @@ -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()]