fruitpicker01 commited on
Commit
068f512
·
verified ·
1 Parent(s): 5805ba3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -318,6 +318,7 @@ def correct_dash_usage(text):
318
  text = re.sub(r'(\d+)\s+миллиона\b|\bмиллионов\b', r'\1 млн', text, flags=re.IGNORECASE)
319
  text = re.sub(r'(\d+)\s*млн\s*руб\.', r'\1 млн р', text, flags=re.IGNORECASE)
320
  text = re.sub(r'(\d+)\s*р\b', r'\1 р', text)
 
321
 
322
  def remove_specific_sentences(text):
323
  sentences = re.split(r'(?<=[.!?])\s+', text)
 
318
  text = re.sub(r'(\d+)\s+миллиона\b|\bмиллионов\b', r'\1 млн', text, flags=re.IGNORECASE)
319
  text = re.sub(r'(\d+)\s*млн\s*руб\.', r'\1 млн р', text, flags=re.IGNORECASE)
320
  text = re.sub(r'(\d+)\s*р\b', r'\1 р', text)
321
+ text = re.sub(r'Qr', 'QR', text)
322
 
323
  def remove_specific_sentences(text):
324
  sentences = re.split(r'(?<=[.!?])\s+', text)