Skip to content

Commit

Permalink
fix minor typo that affected console output
Browse files Browse the repository at this point in the history
  • Loading branch information
pjhartzell authored and gadomski committed May 2, 2022
1 parent c697d7c commit 7db5b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stactools/cli/commands/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def progress_print(root: STACObject) -> None:
nonlocal max_line_length
line = (
f"\rCatalogs={cat_count}, Collections={col_count}, "
"Items={item_count}: Reading {root}"
f"Items={item_count}: Reading {root}"
)
if len(line) > max_line_length:
max_line_length = len(line)
Expand Down

0 comments on commit 7db5b1b

Please sign in to comment.