Skip to content

Commit

Permalink
Remove all IAstroidChecker
Browse files Browse the repository at this point in the history
  • Loading branch information
Matej Spiller Muys authored and carlio committed Oct 23, 2023
1 parent 04df42a commit a833242
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions pylint_django/checkers/migrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"""

import astroid
from pylint import checkers, interfaces
from pylint import checkers
from pylint_plugin_utils import suppress_message

from pylint_django import compat
Expand Down Expand Up @@ -51,8 +51,6 @@ class NewDbFieldWithDefaultChecker(checkers.BaseChecker):
desired default values.
"""

__implements__ = (interfaces.IAstroidChecker,)

# configuration section name
name = "new-db-field-with-default"
msgs = {
Expand Down Expand Up @@ -113,8 +111,6 @@ def _path(node):


class MissingBackwardsMigrationChecker(checkers.BaseChecker):
__implements__ = (interfaces.IAstroidChecker,)

name = "missing-backwards-migration-callable"

msgs = {
Expand Down

0 comments on commit a833242

Please sign in to comment.