We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04df42a commit a833242Copy full SHA for a833242
pylint_django/checkers/migrations.py
@@ -9,7 +9,7 @@
9
"""
10
11
import astroid
12
-from pylint import checkers, interfaces
+from pylint import checkers
13
from pylint_plugin_utils import suppress_message
14
15
from pylint_django import compat
@@ -51,8 +51,6 @@ class NewDbFieldWithDefaultChecker(checkers.BaseChecker):
51
desired default values.
52
53
54
- __implements__ = (interfaces.IAstroidChecker,)
55
-
56
# configuration section name
57
name = "new-db-field-with-default"
58
msgs = {
@@ -113,8 +111,6 @@ def _path(node):
113
111
114
112
115
class MissingBackwardsMigrationChecker(checkers.BaseChecker):
116
117
118
name = "missing-backwards-migration-callable"
119
120
0 commit comments