From 86c034d2bcce731ae1c6a2d1545cd9e0ec71d145 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 16 Sep 2025 19:44:49 +0300 Subject: [PATCH] src/dspace_statistics_api/app.py: OpenAPI json path --- src/dspace_statistics_api/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dspace_statistics_api/app.py b/src/dspace_statistics_api/app.py index ba03c78..f21887c 100644 --- a/src/dspace_statistics_api/app.py +++ b/src/dspace_statistics_api/app.py @@ -45,7 +45,7 @@ class OpenAPIJSONResource: def on_get(self, req, resp): resp.status = falcon.HTTP_200 resp.content_type = "text/html" - with open("dspace_statistics_api/docs/openapi.json", "r") as f: + with open("src/dspace_statistics_api/docs/openapi.json", "r") as f: # Load the openapi.json schema data = json.load(f)