Python - Constructors and Object Initialization
Identify the error in this class definition:
class Car:
def __init__(self, model):
model = model
my_car = Car("Tesla")
print(my_car.model)