You have typo on this lines:
def __int__(self, make, model, year): """Initialize attributes of the parent class.""" super().__int__(make, model, year)it should be
def __init__(self, make, model, year): """Initialize attributes of the parent class.""" super().__init__(make, model, year)also in Car class:
def __int__(self, make, model, year):should be
def __init__(self, make, model, year):
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs