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)