Files
openide/python/testData/inspections/PyAbstractClassInspection/classWithMethodWhichRaisesNotImplementedErrorNotTreatedAsAbstract.py
2023-02-09 16:52:41 +00:00

12 lines
161 B
Python

class A(object):
def foo(self):
raise NotImplementedError
def bar(self):
print("bar() is called")
return
class B(A):
pass