class First: pass

class Second(First):
    def __init__(self):
        super(type(self), self).__init__()

class Third(Second): pass

Third()