From efcc6a3f767c1c71e8c83fac960b456d8d645ec3 Mon Sep 17 00:00:00 2001 From: BillSchumacher <34168009+BillSchumacher@users.noreply.github.com> Date: Mon, 10 Apr 2023 19:50:40 -0500 Subject: [PATCH] Update json_utils.py This was used differently in a local branch and an error. --- scripts/json_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/json_utils.py b/scripts/json_utils.py index b3ffe4b9ab..9508a937e5 100644 --- a/scripts/json_utils.py +++ b/scripts/json_utils.py @@ -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: