From f677a50089e341e89ef6ed0217af2a12dcd2855e Mon Sep 17 00:00:00 2001 From: Brayan Bedritchuk Date: Tue, 29 Jul 2025 16:16:32 -0300 Subject: [PATCH] chore: remove extra blank line --- src/pychronos/sound.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/pychronos/sound.py b/src/pychronos/sound.py index 92cab3f..f2a4cf3 100644 --- a/src/pychronos/sound.py +++ b/src/pychronos/sound.py @@ -6,8 +6,12 @@ def resource_path(relative_path: str) -> str: - base_path = getattr(sys, '_MEIPASS', os.path.abspath(os.path.join(os.path.dirname(__file__), "resources"))) - return os.path.join(base_path, relative_path) + base_path = getattr( + sys, + "_MEIPASS", + os.path.abspath(os.path.dirname(__file__)), + ) + return os.path.join(base_path, "resources", relative_path) BEEP_STARTED_PATH = resource_path("beep_started.wav") BEEP_FINISHED_PATH = resource_path("beep_finished.wav")