aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.py b/app.py
index 3c3cc828..ce52f216 100644
--- a/app.py
+++ b/app.py
@@ -18,12 +18,12 @@ def _index():
@app.route("/healthcheck")
-def healthcheck():
+def _healthcheck():
return jsonify({"status":"ok"})
@app.errorhandler(404)
-def page_not_found(e):
+def _page_not_found(e):
return "replace me with a template, 404 not found", 404