summaryrefslogtreecommitdiff
path: root/pylint/checkers/spelling.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/spelling.py')
-rw-r--r--pylint/checkers/spelling.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pylint/checkers/spelling.py b/pylint/checkers/spelling.py
index 72c389049..bc5e4bad3 100644
--- a/pylint/checkers/spelling.py
+++ b/pylint/checkers/spelling.py
@@ -16,7 +16,6 @@ from astroid import nodes
from pylint.checkers import BaseTokenChecker
from pylint.checkers.utils import check_messages
-from pylint.interfaces import IAstroidChecker
if TYPE_CHECKING:
from pylint.lint import PyLinter
@@ -183,7 +182,6 @@ def _strip_code_flanked_in_backticks(line: str) -> str:
class SpellingChecker(BaseTokenChecker):
"""Check spelling in comments and docstrings."""
- __implements__ = IAstroidChecker
name = "spelling"
msgs = {
"C0401": (