Skip to content

Commit

Permalink
Correct missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanFauble committed Feb 20, 2025
1 parent d1e082d commit 110c343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapseclient/models/mixins/table_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2799,7 +2799,7 @@ async def _send_update(
if additional_changes:
changes.extend(additional_changes)

_send_update(table_descriptor=csv_table_descriptor, changes=changes)
await _send_update(table_descriptor=csv_table_descriptor, changes=changes)

progress_bar = tqdm(
total=file_size,
Expand Down

0 comments on commit 110c343

Please sign in to comment.