From 4181b2d1a14d0ffdd57950efcae8e4a1a21c4bc2 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Wed, 25 Jan 2023 16:09:01 +0000 Subject: [PATCH] Format Python code with psf/black push --- services/health_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/health_service.py b/services/health_service.py index 79e3098..c792d9b 100644 --- a/services/health_service.py +++ b/services/health_service.py @@ -8,7 +8,7 @@ app = Flask(__name__) start_time = datetime.datetime.now() -@app.route('/healthz') +@app.route("/healthz") def health(): # Find the difference between the current time and start_time in seconds uptime = (datetime.datetime.now() - start_time).total_seconds()