From f5d8f36e1fc9017c69141ab802402ac7fc3e33bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Samohel?= Date: Fri, 11 Dec 2020 16:40:10 +0100 Subject: [PATCH] major speed up --- pype/lib/terminal_splash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/lib/terminal_splash.py b/pype/lib/terminal_splash.py index 251db495fc..7ff982c509 100644 --- a/pype/lib/terminal_splash.py +++ b/pype/lib/terminal_splash.py @@ -21,5 +21,5 @@ def play_animation(): os.system('clear') for scanline in animation[current_frame:current_frame + frame_size]: print(scanline.rstrip()) - sleep(0.05) + sleep(0.005) current_frame += frame_size