From 805f72c5fd3280929ae4948c324d2ca0aabcc890 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Sat, 11 Apr 2026 13:56:56 -0700 Subject: [PATCH] Add acappella to live/commentary cleaner patterns --- core/repair_jobs/live_commentary_cleaner.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/repair_jobs/live_commentary_cleaner.py b/core/repair_jobs/live_commentary_cleaner.py index 248e7156..5049687b 100644 --- a/core/repair_jobs/live_commentary_cleaner.py +++ b/core/repair_jobs/live_commentary_cleaner.py @@ -31,6 +31,9 @@ _CONTENT_PATTERNS = [ (r'\bspoken\s*word\b', 'spoken_word'), (r'\bnarrat(?:ion|ed)\b', 'spoken_word'), (r'\bintroduction\b', 'spoken_word'), + # Acappella + (r'\ba\s*cappella\b', 'acappella'), + (r'\bacappella\b', 'acappella'), ]