From 7bba905c2088657ff88707c50dfe8206243a70ed Mon Sep 17 00:00:00 2001 From: AGawas Date: Wed, 28 Jan 2026 21:11:58 -0500 Subject: [PATCH] Fix file path formatting in play method --- embedded/jingles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded/jingles.py b/embedded/jingles.py index cf9359e..6e4b745 100644 --- a/embedded/jingles.py +++ b/embedded/jingles.py @@ -16,7 +16,7 @@ def boot_sync(self): self.buzzer.off() async def play(self, file): - with open(f"aud_jingles/file") as jingle_file: + with open(f"aud_jingles/{file}") as jingle_file: self.buzzer.on() for action in jingle_file: action_split = action.split('#', 1)[0].split(' ', 1)