summaryrefslogtreecommitdiff
path: root/pylint/checkers/mapreduce_checker.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/mapreduce_checker.py')
-rw-r--r--pylint/checkers/mapreduce_checker.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pylint/checkers/mapreduce_checker.py b/pylint/checkers/mapreduce_checker.py
index 65b12c31d..d039fcda5 100644
--- a/pylint/checkers/mapreduce_checker.py
+++ b/pylint/checkers/mapreduce_checker.py
@@ -7,13 +7,13 @@ import abc
class MapReduceMixin(metaclass=abc.ABCMeta):
- """ A mixin design to allow multiprocess/threaded runs of a Checker """
+ """A mixin design to allow multiprocess/threaded runs of a Checker"""
@abc.abstractmethod
def get_map_data(self):
- """ Returns mergable/reducible data that will be examined """
+ """Returns mergable/reducible data that will be examined"""
@classmethod
@abc.abstractmethod
def reduce_map_data(cls, linter, data):
- """ For a given Checker, receives data for all mapped runs """
+ """For a given Checker, receives data for all mapped runs"""