Why is the test code returning that there's no init method when there clearly is. See below:
class Car:
wheels = 'four'
doors = 4
def __int__(self, brand="", model=""):
self.brand = brand
self.model = model
my_car = Car()
some_car1 = Car()
some_car2 = Car()
some_car1.brand = "Ford"
some_car1.model = "Mustang"
some_car2.model = "Camaro"
Created at: 2023/07/31 00:24; Updated at: 2023/08/02 15:46
The question is resolved.