Comment obtenir la classe parent en utilisant Super Python
class Foo(Bar):
def __init__(self, *args, **kwargs):
# invoke Bar.__init__
super().__init__(*args, **kwargs)
Adventurous Addax