I have
class A(object):
def __init__ (self): raise NotImplementedError("A")
class B(A):
def __init__ (self):
....
and pylint says
__init__ method from base class 'A' is not called
Obviously, I do not want to do
super(B, self).__init__()
- so what do I do?
(I tried abc and got
Undefined variable 'abstractmethod'
from pylint, so that is not an option either).