Skip to content

Commit 97544ab

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 05afb77 commit 97544ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylint/lint/pylinter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ def _report_evaluation(self, verbose: bool = False) -> int | None:
11431143
if verbose:
11441144
checked_files_count = self.stats.node_count["module"]
11451145
unchecked_files_count = self.stats.undocumented["module"]
1146-
checked_files = ', '.join(self.stats.modules_names)
1146+
checked_files = ", ".join(self.stats.modules_names)
11471147
msg += f"\nChecked {checked_files_count} files ({checked_files}), skipped {unchecked_files_count} files"
11481148

11491149
if self.config.score:

0 commit comments

Comments
 (0)