Skip to content

Commit

Permalink
🚑 1.2: Missing slash in dir of Pyinstaller MEIPASS
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNitroG committed Feb 26, 2024
1 parent bc63d46 commit 0d4e705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


if getattr(sys, "frozen", False) and hasattr(sys, "_MEIPASS"):
BUNDLE_DIR: str = sys._MEIPASS # type: ignore # skipcq: PYL-W0212 # pylint: disable=protected-access # nopep8
BUNDLE_DIR: str = sys._MEIPASS + "/" # type: ignore # skipcq: PYL-W0212 # pylint: disable=protected-access # nopep8
else:
BUNDLE_DIR = ""

Expand Down

0 comments on commit 0d4e705

Please sign in to comment.