From 421905a47843ee3b6fee9d16c8232e37f5063fe2 Mon Sep 17 00:00:00 2001 From: Erik Harding Date: Tue, 26 Nov 2024 16:50:12 +0200 Subject: [PATCH] Remove root route --- src/application.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/application.py b/src/application.py index afaaed8..d0f2b04 100644 --- a/src/application.py +++ b/src/application.py @@ -37,13 +37,6 @@ ) -@app.route("/") -def hello_world(): - # adding this to trigger error and test sentry/glitchtip - division_by_zero = 1 / 0 # noqa: F841 - return "

Hello, World!

" - - @app.route("/nlu/") @basic_auth.required def nlu():