LLD - Design — Elevator System
Identify the error in this Elevator class snippet:
class Elevator:
def __init__(self, current_floor):
self.current_floor = current_floor
def move_to(self, floor):
current_floor = floor
