From 257b2e4e85598724f124e0b1eb7759b45e3402ff Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Mon, 1 Jan 2024 20:39:58 +0100 Subject: [PATCH] SMZ3: fix type --- worlds/smz3/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/worlds/smz3/__init__.py b/worlds/smz3/__init__.py index cbb9b1830d..a322df8fa5 100644 --- a/worlds/smz3/__init__.py +++ b/worlds/smz3/__init__.py @@ -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)