This commit is contained in:
2026-01-05 11:58:07 +01:00
parent 6a47d83ada
commit 850ef5f623
2 changed files with 11 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ class GameService:
self._on_terminated = callback
def _notify(self):
game_data = json.dumps(self._game)
game_data = json.dumps(self._game.to_dict())
self._on_terminated(game_data)