From 2094638a19ba8bed456687bf767a7d5ee15fda8c Mon Sep 17 00:00:00 2001 From: Laurin Streng Date: Mon, 17 Feb 2025 13:54:03 +0100 Subject: [PATCH] Fix Comment --- scripts/openapi2jsonschema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/openapi2jsonschema.py b/scripts/openapi2jsonschema.py index 5b64339..27c6506 100755 --- a/scripts/openapi2jsonschema.py +++ b/scripts/openapi2jsonschema.py @@ -104,7 +104,7 @@ def write_schema_file(schema, filename): schema = additional_properties(schema, skip=not os.getenv("DENY_ROOT_ADDITIONAL_PROPERTIES")) schema = replace_int_or_string(schema) schemaJSON = json.dumps(schema, indent=2) - # Replace \u with \\u using regex and decoding function + # Convert Unicode escape sequences to their actual Unicode character uescapes = re.compile(r"(?