Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
  • Loading branch information
DanielNoord and cdce8p committed Sep 15, 2021
1 parent 6af1902 commit ccaaa86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylint/lint/parallel.py
Expand Up @@ -83,7 +83,7 @@ def _worker_check_single_file(
return (
id(multiprocessing.current_process()),
_worker_linter.current_name,
file_item[1],
file_item.filepath,
_worker_linter.file_state.base_name,
msgs,
_worker_linter.stats,
Expand Down
2 changes: 1 addition & 1 deletion pylint/lint/pylinter.py
Expand Up @@ -940,7 +940,7 @@ def initialize(self):
def check(self, files_or_modules: Sequence[str]) -> None:
"""main checking entry: check a list of files or modules from their name.
files_or_modules is a list of strings presenting modules to check.
files_or_modules is a sequence of strings presenting modules to check.
"""
self.initialize()

Expand Down

0 comments on commit ccaaa86

Please sign in to comment.