Skip to content

Commit

Permalink
Fix line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed May 3, 2024
1 parent f83570d commit b1f6ab3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pylint/lint/pylinter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,10 @@ def _report_evaluation(self, verbose: bool = False) -> int | None:
checked_files_count = self.stats.node_count["module"]
unchecked_files_count = self.stats.undocumented["module"]
checked_files = ", ".join(self.stats.modules_names)
msg += f"\nChecked {checked_files_count} files ({checked_files}), skipped {unchecked_files_count} files"
msg += (
f"\nChecked {checked_files_count} files ({checked_files}),"
f" skipped {unchecked_files_count} files"
)

if self.config.score:
sect = report_nodes.EvaluationSection(msg)
Expand Down

0 comments on commit b1f6ab3

Please sign in to comment.