From ee1883ac6cb40a636c80cb3e7e54a419b64d9ce6 Mon Sep 17 00:00:00 2001 From: Zanie Date: Fri, 27 Oct 2023 13:28:09 -0500 Subject: [PATCH] Fix missing space --- python/ruff-ecosystem/ruff_ecosystem/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ruff-ecosystem/ruff_ecosystem/check.py b/python/ruff-ecosystem/ruff_ecosystem/check.py index 5ad209af01..ccdc58826a 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/check.py +++ b/python/ruff-ecosystem/ruff_ecosystem/check.py @@ -81,7 +81,7 @@ def markdown_check_result(result: Result) -> str: # Summarize the total changes change_summary = ( f"{markdown_plus_minus(total_added, total_removed)} violations, " - f"{markdown_plus_minus(total_added_fixes, total_removed_fixes)} fixes" + f"{markdown_plus_minus(total_added_fixes, total_removed_fixes)} fixes " f"in {len(result.completed)} projects" ) if error_count: