Skip to content

Commit

Permalink
Project._process_table_rows: Don't force progress bar to final value
Browse files Browse the repository at this point in the history
This avoids an annoying extra print while running tests.
  • Loading branch information
davidfstr committed Jan 19, 2024
1 parent 776581c commit 30804af
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/crystal/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -821,8 +821,6 @@ def _process_table_rows(
progress_bar.update()
process_row_func(row) # may raise
row_count += 1
if row_count != 0:
report_processing_row_func(row_count - 1, progress_bar.miniters) # may raise

report_did_process_rows_func(row_count) # may raise

Expand Down

0 comments on commit 30804af

Please sign in to comment.