app: fix linter errors

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2023-10-07 10:28:45 -04:00
parent 6f20150e6e
commit 16c407e33c
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
1 changed files with 1 additions and 1 deletions

View File

@ -1054,7 +1054,7 @@ class WelcomeHandler(tornado.web.RequestHandler):
auth: AuthComp = self.server.lookup_component("authorization", None)
if auth is not None:
try:
user = auth.check_authorized(self.request)
auth.check_authorized(self.request)
except tornado.web.HTTPError:
authorized = False
else: