summaryrefslogtreecommitdiff
path: root/pylint/checkers/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/__init__.py')
-rw-r--r--pylint/checkers/__init__.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/pylint/checkers/__init__.py b/pylint/checkers/__init__.py
index ed641d8e5..8af4bae67 100644
--- a/pylint/checkers/__init__.py
+++ b/pylint/checkers/__init__.py
@@ -1,6 +1,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
-# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
+# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
+# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
"""Utilities methods and classes for checkers.
@@ -51,7 +51,6 @@ from pylint.checkers.base_checker import (
BaseTokenChecker,
)
from pylint.checkers.deprecated import DeprecatedMixin
-from pylint.checkers.mapreduce_checker import MapReduceMixin
from pylint.utils import LinterStats, diff_string, register_plugins
if sys.version_info >= (3, 8):
@@ -141,7 +140,6 @@ __all__ = [
"BaseTokenChecker",
"BaseRawFileChecker",
"initialize",
- "MapReduceMixin",
"DeprecatedMixin",
"register_plugins",
]