From f4602d40fd8ca554a4eb5539f8a5f0bab0caeee8 Mon Sep 17 00:00:00 2001 From: DevilXD <4180725+DevilXD@users.noreply.github.com> Date: Wed, 6 Dec 2023 21:55:02 +0100 Subject: [PATCH] Fix indentation --- constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.py b/constants.py index 9163db5..74e106c 100644 --- a/constants.py +++ b/constants.py @@ -42,7 +42,7 @@ def _resource_path(relative_path: Path | str) -> Path: Works for dev and for PyInstaller. """ if IS_APPIMAGE: - base_path = Path(sys.argv[0]).absolute().parent + base_path = Path(sys.argv[0]).absolute().parent elif IS_PACKAGED: # PyInstaller's folder where the one-file app is unpacked meipass: str = getattr(sys, "_MEIPASS")