Skip to content

Commit

Permalink
Remove __implements__ usage
Browse files Browse the repository at this point in the history
Pylint removed support for this in this PR pylint-dev/pylint#8404
  • Loading branch information
ivica-prose committed Oct 26, 2023
1 parent 17b2c39 commit 480a670
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/super_not_called.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import astroid
from astroid import bases, nodes
from pylint.checkers import BaseChecker, utils
from pylint.interfaces import IAstroidChecker
from pylint.checkers.utils import decorated_with, is_builtin_object, node_frame_class
from pylint.interfaces import INFERENCE

Expand Down Expand Up @@ -36,8 +35,6 @@ def _ancestors_to_call(klass_node: nodes.ClassDef, method='__init__') -> dict[no

class SuperNotCalledChecker(BaseChecker):

__implements__ = IAstroidChecker

name = 'super-not-called'
priority = -1
msgs = {
Expand Down

0 comments on commit 480a670

Please sign in to comment.