Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 2416c2d

Browse files
Update connector.py
1 parent fadd145 commit 2416c2d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

labelpandas/connector.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ def create_upload_dict(df:pandas.core.frame.DataFrame, lb_client:Client, base_cl
3434
futures.append(exc.submit(create_data_rows, lb_client, base_client, row, metadata_name_key_to_schema, metadata_schema_to_name_key, row_data_col, global_key_col, external_id_col, metadata_index, local_files, divider))
3535
if verbose:
3636
print(f'Processing data rows...')
37+
x = 0
3738
for f in tqdm(as_completed(futures)):
39+
x+=1
40+
print(f"On Data Row number {x}")
3841
res = f.result()
3942
global_key_to_upload_dict[str(res["global_key"])] = res
4043
else:

0 commit comments

Comments
 (0)