def __init__(self, fname, lname, address, email=None, phone=None): Client.__init__(self) Individual.__init__(self, fname, lname, address, email, phone)
def __init__(self, siret, company_name, address, contact): Client.__init__(self) Company.__init__(self, siret, company_name, address, contact)