From e974687da37301672596a95076c418eae5a08077 Mon Sep 17 00:00:00 2001 From: Nicholas Dyer Date: Sun, 14 May 2023 17:21:41 -0400 Subject: [PATCH] removed unnecessary print statement --- pocket_friends/surfaces/title.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pocket_friends/surfaces/title.py b/pocket_friends/surfaces/title.py index 57087c6..490ee25 100644 --- a/pocket_friends/surfaces/title.py +++ b/pocket_friends/surfaces/title.py @@ -18,7 +18,6 @@ class Surface(surface.GameSurface): self.preprocess() self.blit(self.title, (0, 0)) - print(self.frames) self.frames += 1 if self.frames > self.game_fps * self.delay: self.next_surface = 'egg_select'