Skip to content

Commit

Permalink
Clarifies non-sequential progress bar wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
songololo committed May 23, 2021
1 parent 1db2917 commit 09704ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cityseer/algos/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def progress_bar(current: int, total: int, steps: int = 20):
if step_size == 0:
return
if current % step_size == 0:
print('Processed non-sequential iteration', round(current / step_size), 'of', steps)
print('Processed non-sequential checkpoint', round(current / step_size), 'of', steps)


@njit(cache=True)
Expand Down

0 comments on commit 09704ab

Please sign in to comment.