Skip to content

Commit

Permalink
SMZ3: fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
Berserker66 committed Jan 1, 2024
1 parent ad2275c commit 257b2e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion worlds/smz3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import logging
import copy
import os
Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit 257b2e4

Please sign in to comment.