use regex instead of re

pull/743/head
Wladastic 2023-04-10 22:59:16 +02:00
parent ca4afca5da
commit 4ad1fc14a4
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ def attempt_to_fix_json_by_finding_outermost_brackets(json_string):
try:
# Use regex to search for JSON objects
import re
json_pattern = re.compile(r"\{(?:[^{}]|(?R))*\}")
import regex
json_pattern = regex.compile(r"\{(?:[^{}]|(?R))*\}")
json_match = json_pattern.search(json_string)
if json_match: