fix a deprecation warning by using raw strings

This commit is contained in:
Robyn Speer 2019-07-16 17:27:14 -04:00
parent 1f61c9b27a
commit 55e72977a7

View File

@ -6,8 +6,8 @@ from .transliterate import transliterate
MARK_RE = regex.compile(r'[\p{Mn}\N{ARABIC TATWEEL}]', regex.V1)
DIGIT_RE = regex.compile('\d')
MULTI_DIGIT_RE = regex.compile('\d[\d.,]+')
DIGIT_RE = regex.compile(r'\d')
MULTI_DIGIT_RE = regex.compile(r'\d[\d.,]+')
def preprocess_text(text, language):