From 69cb03170b325a111d4384c150b725f427d23968 Mon Sep 17 00:00:00 2001 From: Vic Wong Date: Tue, 24 Dec 2024 14:24:32 -0800 Subject: [PATCH] fix: commitlint error --- pikaraoke/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pikaraoke/app.py b/pikaraoke/app.py index 2645866..64af2fd 100644 --- a/pikaraoke/app.py +++ b/pikaraoke/app.py @@ -441,7 +441,7 @@ def start_song(): def delete_file(): if "song" in request.args: song_path = request.args["song"] - exists = any(item.get('file') == song_path for item in k.queue) + exists = any(item.get("file") == song_path for item in k.queue) if exists: flash( "Error: Can't delete this song because it is in the current queue: " + song_path,