Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 26, 2024
1 parent 05afb77 commit 97544ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylint/lint/pylinter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ def _report_evaluation(self, verbose: bool = False) -> int | None:
if verbose:
checked_files_count = self.stats.node_count["module"]
unchecked_files_count = self.stats.undocumented["module"]
checked_files = ', '.join(self.stats.modules_names)
checked_files = ", ".join(self.stats.modules_names)
msg += f"\nChecked {checked_files_count} files ({checked_files}), skipped {unchecked_files_count} files"

if self.config.score:
Expand Down

0 comments on commit 97544ab

Please sign in to comment.