Skip to content

Commit 6aab3ae

Browse files
committed
Minor
1 parent 571ac20 commit 6aab3ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rest/utils/ner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# List of regex to apply.
2424
# The first two regex ensures that no substrings are matched, only strings starting with space, end of the sentence or final punctuations and ending with the same.
2525
# An example is a phone number like '1234567890', inside this also the NL_CITIZEN_SERVICE_NUMBER '123456789'could be matched otherwise.
26-
####################################
26+
########################################################################################################################################################
2727
_CLEAN_START_REGEX = '(\s|^|[.,:])'
2828
_CLEAN_END_REGEX = '(\s|$|[.,])'
2929
_REGEX_PATTERNS = {'IT_FISCAL_CODE': _CLEAN_START_REGEX + '[A-Z]{6}[0-9]{2}[A-E,H,L,M,P,R-T][0-9]{2}[A-Z0-9]{5}' + _CLEAN_END_REGEX,

0 commit comments

Comments
 (0)