From 7db5b1bfe75e19458e32d2c193e5b63cc0299e43 Mon Sep 17 00:00:00 2001 From: pjhartzell Date: Fri, 29 Apr 2022 19:06:58 -0400 Subject: [PATCH] fix minor typo that affected console output --- src/stactools/cli/commands/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stactools/cli/commands/info.py b/src/stactools/cli/commands/info.py index 9683ef2e..34998214 100644 --- a/src/stactools/cli/commands/info.py +++ b/src/stactools/cli/commands/info.py @@ -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)