Skip to content

Commit

Permalink
gui: catch KeyError on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Nov 16, 2023
1 parent 6e7e19e commit 4ae76c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpl_data_cast/gui/splash.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
try:
import pyi_splash
except ImportError:
except (ImportError, KeyError):
pyi_splash = None


Expand Down

0 comments on commit 4ae76c1

Please sign in to comment.