Skip to content

Commit

Permalink
Fix numbers in check_output
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Dec 19, 2024
1 parent 02337e7 commit 78bed9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ def main() -> None:
for index, pair in enumerate(results):
path, is_passed = pair
logger.info(
f"[{index + 1:<03}/{total:<03}] Finished"
f"[{index + 1:>03}/{total:>03}] Finished"
f" {path.absolute().relative_to(Path.cwd())} ..."
)
has_errors = has_errors or not is_passed
Expand Down

0 comments on commit 78bed9e

Please sign in to comment.