LLD - Design — Hotel Booking System
Identify the error in this Booking class code snippet:
class Booking:
def __init__(self, room):
self.room = room
def confirm(self):
self.room.is_available = False
booking = Booking(None)
booking.confirm()