diff --git a/pylib/anki/sound.py b/pylib/anki/sound.py index 1072c3c21..74de2e911 100644 --- a/pylib/anki/sound.py +++ b/pylib/anki/sound.py @@ -16,7 +16,3 @@ def allSounds(text) -> List: def stripSounds(text) -> str: return re.sub(_soundReg, "", text) - - -def hasSound(text) -> bool: - return re.search(_soundReg, text) is not None