diff --git a/endpoints/web.py b/endpoints/web.py index 913a6905a..519fc5c5e 100644 --- a/endpoints/web.py +++ b/endpoints/web.py @@ -162,7 +162,7 @@ def health(): check = HealthCheck.get_check(app.config['HEALTH_CHECKER'][0], app.config['HEALTH_CHECKER'][1]) (data, is_healthy) = check.conduct_healthcheck(db_healthy, buildlogs_healthy) - response = jsonify(dict(data = data, is_healthy = is_healthy)) + response = jsonify(dict(data=data, is_healthy=is_healthy)) response.status_code = 200 if is_healthy else 503 return response