From ab996bb030e7c7130ca73d8d1103e3b860392171 Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Mon, 2 Jan 2023 18:04:14 +0100 Subject: [PATCH] code styling --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 63df4f4..883709d 100644 --- a/app/main.py +++ b/app/main.py @@ -69,7 +69,7 @@ async def index(): @app.get('/status', summary='* Status', description='returns current service status, version (incl. git-commit) and some variables.', deprecated=True) -async def status(request: Request): +async def status(): return JSONResponse({'status': 'up', 'version': VERSION, 'commit': COMMIT, 'debug': DEBUG})