class Foo:
pass
class Bar(Foo):
def __init__(self):
super(Foo, self).__init__()
class Foo:
pass
class Bar(Foo):
def __init__(self):
super().__init__()
Used when another argument than the current class is given as first argument of the super builtin.