fccoelho commited on
Commit
2b4bebf
·
1 Parent(s): 0d322e4

consertei saída dos regex

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -178,7 +178,7 @@ def extract_references_with_regex(text):
178
 
179
  # Processar cada padrão
180
  for pattern_index, pattern in enumerate(REFERENCE_PATTERNS):
181
- reflist = re.findall(pattern, text, re.MULTILINE | re.UNICODE | re.DOTALL)
182
 
183
  if reflist:
184
  for ref_match in reflist:
 
178
 
179
  # Processar cada padrão
180
  for pattern_index, pattern in enumerate(REFERENCE_PATTERNS):
181
+ reflist = re.findall(pattern, text, re.MULTILINE | re.UNICODE | re.DOTALL| re.VERBOSE)
182
 
183
  if reflist:
184
  for ref_match in reflist: