From 06a2feaf841c3aa6899dc973fdc69de7ba414137 Mon Sep 17 00:00:00 2001 From: Billy Date: Tue, 25 Jul 2023 16:48:30 +0800 Subject: [PATCH] fix: NIghtly build errors fixed --- biscuit/__main__.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/biscuit/__main__.py b/biscuit/__main__.py index c6bd277c..1c251ec9 100644 --- a/biscuit/__main__.py +++ b/biscuit/__main__.py @@ -5,15 +5,12 @@ >>> python -m biscuit """ -import platform import sys # The splash screen (windows specific) try: - if platform.os == "Windows" and getattr(sys, 'frozen', False): - import pyi_splash - pyi_splash.update_text("Initializing...") - pyi_splash.close() + import pyi_splash + pyi_splash.close() except: pass