Argument for /check fixed

This commit is contained in:
Profitroll 2023-01-19 22:10:04 +02:00
parent aff3f76fc1
commit 453c3e95dd
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ makedirs(configGet("data", "locations"), exist_ok=True)
@app.get("/check", response_class=Response, include_in_schema=False)
async def check():
return Response(HTTP_200_OK)
return Response(status_code=HTTP_200_OK)
@app.get("/favicon.ico", response_class=FileResponse, include_in_schema=False)
async def favicon():