From 2a01f550421838d8ee4f87b982bd74adacd30244 Mon Sep 17 00:00:00 2001 From: Marcelo Lotif Date: Thu, 15 Feb 2024 15:10:48 -0500 Subject: [PATCH] Adding return type for client connect --- florist/api/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/florist/api/client.py b/florist/api/client.py index c2181768..bd759a65 100644 --- a/florist/api/client.py +++ b/florist/api/client.py @@ -5,5 +5,5 @@ @app.get("/api/client/connect") -def connect(): +def connect() -> JSONResponse: return JSONResponse({"status": "ok"})