Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gavin-ho1 committed Aug 1, 2024
1 parent 8bf943b commit 0704bf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experiments/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,9 +373,9 @@
output_str = ''
for out in output_bold:
output_str += out + '/'
output_str = output_str[0:-1]
output_str = cyan(output_str[0:-1])

print(cyan(' '+output_str+' '*((max_length-len(output)+(max_length_job-len(str(path['complete_jobs'])+' / '+str(path['total_jobs'])+' Jobs'))))), end ='')
print(' '+output_str+' '*((max_length-len(output)+(max_length_job-len(str(path['complete_jobs'])+' / '+str(path['total_jobs'])+' Jobs')))), end ='')

# Print number of jobs + progress bar
if path['complete_jobs'] == path['total_jobs']:
Expand Down

0 comments on commit 0704bf9

Please sign in to comment.