Update json_utils.py

This was used differently in a local branch and an error.
pull/747/head
BillSchumacher 2023-04-10 19:50:40 -05:00 committed by GitHub
parent e62a3be294
commit efcc6a3f76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ def balance_braces(json_string: str) -> str:
json.loads(json_string)
return json_string
except json.JSONDecodeError as e:
raise e
pass
def fix_invalid_escape(json_str: str, error_message: str) -> str: