Be good with the linter

This commit is contained in:
Silversthorn 2023-01-26 22:26:41 +01:00
parent d97a792987
commit bc2776c666

View File

@ -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),
]