From 89ee1df5878aa66bedd298c9b01ef27b1d043838 Mon Sep 17 00:00:00 2001 From: legonzaur Date: Sat, 20 Apr 2024 15:09:55 +0200 Subject: [PATCH] remove print --- src/controller/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/controller/client.py b/src/controller/client.py index 7f6d852..d73eaaa 100644 --- a/src/controller/client.py +++ b/src/controller/client.py @@ -81,7 +81,6 @@ class ClientController(ClientControllerInterface): if self.player.team != self.game_controller.game.turn: return await self.send_error("it is not your turn to play!") if message.type == "action": - print("message.data_type") if message.data_type == "buy": ## TODO : pydantic type check for message.data await self.player.buy_cards(message.data)