Python - Object-Oriented Programming Foundations
Find the error in this class definition and choose the correct fix:
class Book:
def __init__(title, author):
self.title = title
self.author = author