Skip to content

Commit 9a82edc

Browse files
World: remove ClassVar typing from topology_present (#3294)
1 parent 77cce68 commit 9a82edc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

worlds/AutoWorld.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ class World(metaclass=AutoWorldRegister):
206206

207207
game: ClassVar[str]
208208
"""name the game"""
209-
topology_present: ClassVar[bool] = False
210-
"""indicate if world type has any meaningful layout/pathing"""
209+
topology_present: bool = False
210+
"""indicate if this world has any meaningful layout/pathing"""
211211

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

0 commit comments

Comments
 (0)