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