From 0be4f68f294608a8296404e7348d9d050f1b0f77 Mon Sep 17 00:00:00 2001 From: alwaysintreble Date: Mon, 13 May 2024 00:50:58 -0500 Subject: [PATCH] World: remove ClassVar typing from topology_present --- 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"""