diff --git a/docs/_src/api/openapi/generate_openapi_specs.py b/docs/_src/api/openapi/generate_openapi_specs.py index 312062eee..61232abf7 100644 --- a/docs/_src/api/openapi/generate_openapi_specs.py +++ b/docs/_src/api/openapi/generate_openapi_specs.py @@ -19,4 +19,4 @@ specs = get_openapi_specs() # Dump the specs into a JSON file with open(f"openapi.json", "w") as f: - json.dump(specs, f) + json.dump(specs, f, indent=4)