From c0cd03f43615218a40da60805a1fefafea79d12a Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Fri, 27 Sep 2024 01:21:11 +0200 Subject: [PATCH] Update world api.md --- docs/world api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/world api.md b/docs/world api.md index 128e2f112f..b040fc2136 100644 --- a/docs/world api.md +++ b/docs/world api.md @@ -709,7 +709,7 @@ class MyGameState(LogicMixin): def init_mixin(self, multiworld: MultiWorld) -> None: # Initialize per player with the corresponding "nothing" value, such as 0 or an empty set. - # You can also use something like Collections.defaultdict(set) + # You can also use something like Collections.defaultdict self.mygame_defeatable_enemies = { player: set() for player in multiworld.get_game_players("My Game") }