Skip to content

Commit

Permalink
fix: NIghtly build errors fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlin7 committed Jul 25, 2023
1 parent 405f7f9 commit 06a2fea
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions biscuit/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 06a2fea

Please sign in to comment.