Skip to content

Commit

Permalink
fix progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
Booplicate committed Jul 16, 2020
1 parent b5c15de commit 88544c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ init -981 python in sup_utils:
"""
if self in self.queued_updaters:
self.finished_updaters.append(self)
bar_value = 1.0 / float(self.queued_updaters) * 100
bar_value = 1.0 / float(len(self.queued_updaters)) * 100
self.bulk_progress_bar.add_value(bar_value)

# # # End of helper methods defination
Expand Down

0 comments on commit 88544c6

Please sign in to comment.