Skip to content

Commit

Permalink
fix(services.py): Fix counting of fixed files
Browse files Browse the repository at this point in the history
  • Loading branch information
Rizhiy committed Feb 3, 2023
1 parent 15113fc commit 5c4ca06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yamlfix/services.py
Expand Up @@ -87,7 +87,7 @@ def fix_files( # pylint: disable=too-many-branches
log.info("Would fix %s", file_name)
else:
log.info("Fixed %s", file_name)
total_fixed += 1
total_fixed += 1
else:
log.log(15, "%s is already well formatted", file_name)

Expand Down

0 comments on commit 5c4ca06

Please sign in to comment.