Skip to content

Commit

Permalink
updated codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Aug 11, 2024
1 parent ff992af commit 172e98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avro/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 172e98f

Please sign in to comment.