To assign the name and job properties, we need to call the parent's constructor with the proper inputs, super().__init__(name, job).
name
job
super().__init__(name, job)
Make sure to type super().__init__(name, job).