From 3f9dfea2bf931a454c72a46a816e19b8cdd1482a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Sch=C3=A4fer?= <pschaefer@ITA.AKUSTIK.RWTH-AACHEN.DE> Date: Wed, 20 Nov 2024 09:52:04 +0100 Subject: [PATCH] fixed code format --- src/vapython/_helper.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/vapython/_helper.py b/src/vapython/_helper.py index 3dcf2ab..61967c0 100644 --- a/src/vapython/_helper.py +++ b/src/vapython/_helper.py @@ -204,9 +204,11 @@ def find_server_executable() -> Optional[Path]: root = tk.Tk() root.withdraw() - root.attributes('-topmost', 1) + root.attributes("-topmost", 1) - print("NOTE: A window has opened for specifying the path to the 'VAServer.exe'. This should be located in the `bin` subfolder of the respective VA directory.") + print( + "NOTE: A window has opened for specifying the path to the 'VAServer.exe'. This should be located in the `bin` subfolder of the respective VA directory." + ) executable_raw = filedialog.askopenfilename( title="Select VAServer executable", filetypes=[("VAServer executable", "*.exe")], -- GitLab