the code
class A(object): def a(self): raise NotImplementedError class B(A): def a(self): return 7 class C(B): pass
Why is Pycharm complaining?
Problem Synopsis Class C must implement all abstract methods
python inheritance warnings pycharm
Mrj
source share