From e4ff2597e4d319ded720a60c53e6ae1161d3018f Mon Sep 17 00:00:00 2001 From: Aaron Wagener Date: Mon, 13 May 2024 21:35:33 -0500 Subject: [PATCH] World: remove ClassVar typing from topology_present (#3294) --- worlds/AutoWorld.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/AutoWorld.py b/worlds/AutoWorld.py index faf14bed1814..9836a526c172 100644 --- a/worlds/AutoWorld.py +++ b/worlds/AutoWorld.py @@ -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"""