From 00433f6987f15e5dbb89e3215f528dbf4f2581d5 Mon Sep 17 00:00:00 2001 From: Giovani Date: Thu, 15 Jul 2021 23:29:08 -0400 Subject: [PATCH] chore: remove print from online module --- tetri5/online.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tetri5/online.py b/tetri5/online.py index 72cfe24..d9b804f 100644 --- a/tetri5/online.py +++ b/tetri5/online.py @@ -210,7 +210,6 @@ class _NetworkConnectionService(): MultiplayerService._receive_stack_queue.put(StackDto.create(data["stack"])) if data["type"] == "receive_stats": MultiplayerService._receive_stats_queue.put(StatsDto.create(data["stats"])) - print(data["stats"]) if data["type"] == "exit_game": print("Exit the game!") cls.close_connection()