From 172e98fc7a22d4a97e2a8324536a53b2aca90817 Mon Sep 17 00:00:00 2001 From: HitBlast Date: Sun, 11 Aug 2024 12:20:14 +0600 Subject: [PATCH] updated codebase --- avro/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avro/main.py b/avro/main.py index 4b21f03..b1e47e7 100755 --- a/avro/main.py +++ b/avro/main.py @@ -30,7 +30,7 @@ def _concurrency_helper(func: Callable, params: Tuple[str]) -> List[str]: UTF8_REGEX = re.compile(r"\A[\x00-\x7F]*\Z") # Compiled regular expression for removing noise while reversing. -REVERSE_REGEX = re.compile("(\\s|\\.|,|\\?|\\।|\\-|;|')", re.UNICODE) +REVERSE_REGEX = re.compile(r"(\s|\.|,|\?|।|-|;|')", re.UNICODE) # The primary parse function for the library.