Skip to content

Commit

Permalink
adjusted tasks progress prints to not overwrite
Browse files Browse the repository at this point in the history
  • Loading branch information
tomerlf1 committed Feb 28, 2024
1 parent 851ec6d commit 9bb3889
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gce_rescue/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ def inner(*args, **kwargs):
if task_index and total_tasks:
_logger.info('Progress: %i/%i tasks completed',
task_index, total_tasks)
print(f'finished {task_func.__name__} {task_index}/{total_tasks}'
f' tasks completed')
print('\n', f'finished {task_func.__name__} {task_index}/{total_tasks}'
f' tasks completed')

return res

Expand Down

0 comments on commit 9bb3889

Please sign in to comment.