class Abstract: def method(self): raise NotImplementedError() class Concrete(Abstract): pass