SMZ3: fix type

This commit is contained in:
Fabian Dill
2024-01-01 20:39:58 +01:00
parent ad2275c78a
commit 257b2e4e85

View File

@@ -1,3 +1,5 @@
from __future__ import annotations
import logging
import copy
import os
@@ -85,7 +87,7 @@ class SMZ3World(World):
def __init__(self, world: MultiWorld, player: int):
self.rom_name_available_event = threading.Event()
self.locations: Dict[str, Location] = {}
self.locations: Dict[str, SMZ3Location] = {}
self.unreachable = []
super().__init__(world, player)