From 0c44319864cc8727f80b8f414f68324f630707db Mon Sep 17 00:00:00 2001 From: Teal Dulcet Date: Wed, 8 Jan 2025 05:11:04 -0800 Subject: [PATCH] Fixed SIM103 (needless-bool): Return the condition `not "admin" not in privs` directly --- management/daemon.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/management/daemon.py b/management/daemon.py index 6658af09..8525b36d 100755 --- a/management/daemon.py +++ b/management/daemon.py @@ -688,8 +688,7 @@ def check_request_cookie_for_admin_access(): if not session: return False privs = get_mail_user_privileges(session["email"], env) if not isinstance(privs, list): return False - if "admin" not in privs: return False - return True + return "admin" in privs def authorized_personnel_only_via_cookie(f): @wraps(f)