Python - Object-Oriented Programming Foundations
Find the error in this object-oriented code:
class Car:
def __init__(self, model):
self.model = model
c = Car('Tesla')
print(c.model)