less-garbage3

This commit is contained in:
Untone 2024-09-26 23:19:10 +03:00
parent f64f07579c
commit b9ac3ee3c6

View File

@ -17,6 +17,9 @@ def normalize(text):
if is_russian_wording(text):
# Normalize the text by replacing characters
text = (text
.replace(' ', ' ')
.replace(' ', ' ')
.replace(' ', ' ')
.replace('e', 'е')
.replace('o', 'о')
.replace('x', 'х')