summaryrefslogtreecommitdiff
path: root/pylint/checkers/imports.py
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-19 22:51:13 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-19 23:26:39 +0200
commit5e76bff35db7ddd3eac443efb58b7f329b423e33 (patch)
tree17762156daeca435d333d81400f0984676c44aae /pylint/checkers/imports.py
parentfb7d1bd72224a2c914b095173e6d3ca6b217feeb (diff)
downloadpylint-git-5e76bff35db7ddd3eac443efb58b7f329b423e33.tar.gz
Remove ``IAstroidChecker`` from ``__implements__``
Diffstat (limited to 'pylint/checkers/imports.py')
-rw-r--r--pylint/checkers/imports.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py
index 1c472952d..003bad287 100644
--- a/pylint/checkers/imports.py
+++ b/pylint/checkers/imports.py
@@ -25,7 +25,6 @@ from pylint.checkers.utils import (
)
from pylint.exceptions import EmptyReportError
from pylint.graph import DotBackend, get_cycles
-from pylint.interfaces import IAstroidChecker
from pylint.reporters.ureports.nodes import Paragraph, Section, VerbatimText
from pylint.utils import IsortDriver
@@ -282,8 +281,6 @@ class ImportsChecker(DeprecatedMixin, BaseChecker):
* uses of modules instead of preferred modules
"""
- __implements__ = IAstroidChecker
-
name = "imports"
msgs = MSGS
default_deprecated_modules = ()