From 0726a8db9e756aa44908d580d6fd6611b4c2ad4d Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 26 Nov 2020 22:29:10 +0100 Subject: [PATCH] A print instruction remains. It was rendered on the screen. Awkward... --- squirrelbattle/display/logsdisplay.py | 1 - 1 file changed, 1 deletion(-) diff --git a/squirrelbattle/display/logsdisplay.py b/squirrelbattle/display/logsdisplay.py index 43a18dc..7bed61e 100644 --- a/squirrelbattle/display/logsdisplay.py +++ b/squirrelbattle/display/logsdisplay.py @@ -12,7 +12,6 @@ class LogsDisplay(Display): self.logs = logs def display(self) -> None: - print(type(self.logs.messages), flush=True) messages = self.logs.messages[-self.height:] messages = messages[::-1] self.pad.erase()