Skip to content

Commit a833242

Browse files
Matej Spiller Muyscarlio
Matej Spiller Muys
authored andcommitted
Remove all IAstroidChecker
1 parent 04df42a commit a833242

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pylint_django/checkers/migrations.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""
1010

1111
import astroid
12-
from pylint import checkers, interfaces
12+
from pylint import checkers
1313
from pylint_plugin_utils import suppress_message
1414

1515
from pylint_django import compat
@@ -51,8 +51,6 @@ class NewDbFieldWithDefaultChecker(checkers.BaseChecker):
5151
desired default values.
5252
"""
5353

54-
__implements__ = (interfaces.IAstroidChecker,)
55-
5654
# configuration section name
5755
name = "new-db-field-with-default"
5856
msgs = {
@@ -113,8 +111,6 @@ def _path(node):
113111

114112

115113
class MissingBackwardsMigrationChecker(checkers.BaseChecker):
116-
__implements__ = (interfaces.IAstroidChecker,)
117-
118114
name = "missing-backwards-migration-callable"
119115

120116
msgs = {

0 commit comments

Comments
 (0)