From a89c1e35ccb1c501a93a04b5b3a8b855a5badd1f Mon Sep 17 00:00:00 2001 From: superdimensional Date: Sun, 2 May 2021 02:01:43 -0400 Subject: [PATCH] cleaned up a bit --- functions.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/functions.py b/functions.py index dc3488d..3a3edda 100644 --- a/functions.py +++ b/functions.py @@ -9,7 +9,6 @@ def count_up(omnitrix_button): BoomBox("res/sound_switch.mp3").play() global counter counter += 1 - print(counter) if counter < 0: path = image_display(counter * -1) else: @@ -23,7 +22,6 @@ def count_down(omnitrix_button): BoomBox("res/sound_switch.mp3").play() global counter counter -= 1 - print(counter) if counter < 0: path = image_display(counter * -1) else: @@ -43,7 +41,6 @@ def skip_up(omnitrix_button): BoomBox("res/sound_switch.mp3").play() global counter counter += 5 - print(counter) if counter < 0: path = image_display(counter * -1) else: @@ -58,7 +55,6 @@ def skip_down(omnitrix_button): BoomBox("res/sound_switch.mp3").play() global counter counter -= 5 - print(counter) if counter < 0: path = image_display(counter * -1) else: