summaryrefslogtreecommitdiff
path: root/pylint/lint/parallel.py
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-03-13 13:15:46 +0100
committerGitHub <noreply@github.com>2022-03-13 13:15:46 +0100
commit663a2be7abd407fc680f426155ba26becaaa278d (patch)
treefe0b64a75fe24093b6f26018d82e5b5477a13d3c /pylint/lint/parallel.py
parent7981ec021b84c6f2b216202c1c028da4b0ee995b (diff)
downloadpylint-git-663a2be7abd407fc680f426155ba26becaaa278d.tar.gz
Upgrade ``pydocstringformatter`` to ``0.5.0`` (#5910)
Diffstat (limited to 'pylint/lint/parallel.py')
-rw-r--r--pylint/lint/parallel.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pylint/lint/parallel.py b/pylint/lint/parallel.py
index f3e2d6cb4..99c371493 100644
--- a/pylint/lint/parallel.py
+++ b/pylint/lint/parallel.py
@@ -133,7 +133,8 @@ def check_parallel(
files: Iterable[FileItem],
arguments: Union[None, str, Sequence[str]] = None,
) -> None:
- """Use the given linter to lint the files with given amount of workers (jobs)
+ """Use the given linter to lint the files with given amount of workers (jobs).
+
This splits the work filestream-by-filestream. If you need to do work across
multiple files, as in the similarity-checker, then inherit from MapReduceMixin and
implement the map/reduce mixin functionality.