From 0494c93533e38e2e6b78cc5e4bd636068e8e284a Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Tue, 3 Sep 2024 08:48:03 +0100 Subject: [PATCH] Tidy up f-string quotes --- Lib/shaperglot/cli/check.py | 2 +- Lib/shaperglot/cli/report.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/shaperglot/cli/check.py b/Lib/shaperglot/cli/check.py index 9dd5acd..9749d8e 100644 --- a/Lib/shaperglot/cli/check.py +++ b/Lib/shaperglot/cli/check.py @@ -61,5 +61,5 @@ def show_how_to_fix(reporter: Reporter): print("\nTo add full support to nearly-supported languages:") for category, fixes in reporter.items(): plural = "s" if len(fixes) > 1 else "" - print(f" * {category.replace("_", ' ').capitalize()}{plural}: ", end="") + print(f" * {category.replace('_', ' ').capitalize()}{plural}: ", end="") print("; ".join(sorted(fixes))) diff --git a/Lib/shaperglot/cli/report.py b/Lib/shaperglot/cli/report.py index 3869ae5..2430e1f 100644 --- a/Lib/shaperglot/cli/report.py +++ b/Lib/shaperglot/cli/report.py @@ -105,7 +105,7 @@ def long_summary(fixes_needed, unsupported) -> None: print("\nTo add support:") for category, fixes in fixes_needed.items(): plural = "s" if len(fixes) > 1 else "" - print(f" * {category.replace("_", ' ').capitalize()}{plural}: ") + print(f" * {category.replace('_', ' ').capitalize()}{plural}: ") for fix in sorted(fixes): print(" - " + fix)