How to acess a function that is inside the parent and was overwrite on the child python code example
Example: how to get the parent class using super python
class Foo(Bar):
def __init__(self, *args, **kwargs):
# invoke Bar.__init__
super().__init__(*args, **kwargs)