When using Python\'s super() to do method chaining, you have to explicitly specify your own class, for example:
super()
class MyDecorator(Decorator):
you can also avoid writing a concrete class name in older versions of python by using
def __init__(self): super(self.__class__, self) ...