consider using python 3 style super() code example
Example 1: python super
class Square(Rectangle):
def __init__(self, length):
super().__init__(length, length)
Example 2: python3 call parent constructor
super(Instructor, self).__init__(name, year)