Fix missing space

This commit is contained in:
Zanie 2023-10-27 13:28:09 -05:00
parent 0c1a7ffbdc
commit ee1883ac6c
1 changed files with 1 additions and 1 deletions

View File

@ -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: