def __init__ python not overwrite parrent class
# You must call __init__ for each parent class.
# The same goes for functions, if you are overriding a function
# that exists in both parents.
class Child(Parent):
def __init__(self):
Parent.__init__(self)