1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-16 17:47:23 +01:00

Fixed F841 (unused-variable)

This commit is contained in:
Teal Dulcet
2023-12-22 07:15:14 -08:00
committed by Joshua Tauberer
parent 2b426851f9
commit 13b38cc04d
7 changed files with 15 additions and 15 deletions

View File

@@ -174,7 +174,7 @@ def logout():
try:
email, _ = auth_service.authenticate(request, env, logout=True)
app.logger.info(f"{email} logged out")
except ValueError as e:
except ValueError:
pass
finally:
return json_response({ "status": "ok" })