diff --git a/tm/macro.py b/tm/macro.py index 5acabeba..f548a6c4 100644 --- a/tm/macro.py +++ b/tm/macro.py @@ -32,8 +32,6 @@ class MacroProg: color_to_tape_cache: dict[Color, tuple[Color, ...]] tape_to_color_cache: dict[tuple[Color, ...], Color] - _state: State | None - def __init__(self, program: str | GetInstr): self.program = program @@ -61,8 +59,6 @@ def __init__(self, program: str | GetInstr): self.color_to_tape_cache = {} self.tape_to_color_cache = {} - self._state = None - def __getitem__(self, slot: Slot) -> Instr | None: try: instr = self.instrs[slot]