diff --git a/utils/text/cleaners.py b/utils/text/cleaners.py index 962b3c31..e6b611b4 100644 --- a/utils/text/cleaners.py +++ b/utils/text/cleaners.py @@ -64,7 +64,7 @@ def convert_to_ascii(text): def remove_aux_symbols(text): - text = re.sub(r'[\<\>\(\)\[\]\"\']+', '', text) + text = re.sub(r'[\<\>\(\)\[\]\"]+', '', text) return text