Skip to content

Commit

Permalink
World: remove ClassVar typing from topology_present (ArchipelagoMW#3294)
Browse files Browse the repository at this point in the history
  • Loading branch information
alwaysintreble authored May 14, 2024
1 parent 77cce68 commit 9a82edc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/AutoWorld.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ class World(metaclass=AutoWorldRegister):

game: ClassVar[str]
"""name the game"""
topology_present: ClassVar[bool] = False
"""indicate if world type has any meaningful layout/pathing"""
topology_present: bool = False
"""indicate if this world has any meaningful layout/pathing"""

all_item_and_group_names: ClassVar[FrozenSet[str]] = frozenset()
"""gets automatically populated with all item and item group names"""
Expand Down

0 comments on commit 9a82edc

Please sign in to comment.