diff --git a/manager.py b/manager.py index cb0755b..086f7f9 100755 --- a/manager.py +++ b/manager.py @@ -50,11 +50,8 @@ class Api: from subprocess import Popen Popen( - [ - sys.executable, - Path(__file__).parent / "webview_ui.py", - self.instances[idx]["path"], - ] + [sys.executable, "webview_ui.py", self.instances[idx]["path"]], + cwd=Path(__file__).parent, )