From bc2776c6669a28859ca09665907f7d3625128685 Mon Sep 17 00:00:00 2001 From: Silversthorn Date: Thu, 26 Jan 2023 22:26:41 +0100 Subject: [PATCH] Be good with the linter --- app/classes/web/tornado_handler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/classes/web/tornado_handler.py b/app/classes/web/tornado_handler.py index e430df63..4feae695 100644 --- a/app/classes/web/tornado_handler.py +++ b/app/classes/web/tornado_handler.py @@ -167,7 +167,8 @@ class Webserver: (r"/api/v1/users/delete_user", DeleteUser, handler_args), # API Routes V2 *api_handlers(handler_args), - # Using this one at the end to catch all the other requests to Public Handler + # Using this one at the end + # to catch all the other requests to Public Handler (r"/(.*)", PublicHandler, handler_args), ]