From 10973a9f274d36b25bc8235a53cc3f55504f2578 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 15 Aug 2024 15:54:44 -0500 Subject: Fix a bunch of linting errors. --- gn_auth/auth/authorisation/users/masquerade/models.py | 3 ++- gn_auth/auth/authorisation/users/views.py | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'gn_auth/auth/authorisation/users') diff --git a/gn_auth/auth/authorisation/users/masquerade/models.py b/gn_auth/auth/authorisation/users/masquerade/models.py index a55e462..8ac1a68 100644 --- a/gn_auth/auth/authorisation/users/masquerade/models.py +++ b/gn_auth/auth/authorisation/users/masquerade/models.py @@ -37,7 +37,8 @@ def can_masquerade(func): masq_privs = [] for roles in user_roles(conn, token.user): for role in roles["roles"]: - privileges = [p for p in role.privileges if p.privilege_id == "system:user:masquerade"] + privileges = [p for p in role.privileges + if p.privilege_id == "system:user:masquerade"] masq_privs.extend(privileges) if len(masq_privs) == 0: diff --git a/gn_auth/auth/authorisation/users/views.py b/gn_auth/auth/authorisation/users/views.py index 8559696..4b56c3d 100644 --- a/gn_auth/auth/authorisation/users/views.py +++ b/gn_auth/auth/authorisation/users/views.py @@ -312,7 +312,6 @@ def list_all_users() -> Response: @users.route("/handle-unverified", methods=["POST"]) def handle_unverified(): """Handle case where user tries to login but is unverified""" - form = request_json() email = request.args["email"] # TODO: Maybe have a GN2_URI setting here? # or pass the client_id here? -- cgit v1.2.3