aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/auth/authorisation/users/masquerade/models.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-08-15 15:54:44 -0500
committerFrederick Muriuki Muriithi2024-08-15 15:54:44 -0500
commit10973a9f274d36b25bc8235a53cc3f55504f2578 (patch)
tree79e504d1c5cb934d4e31503c0fad42d6a0ae9259 /gn_auth/auth/authorisation/users/masquerade/models.py
parent9b007bdcc6cff8f479fdd8f83816e6589d6cc668 (diff)
downloadgn-auth-10973a9f274d36b25bc8235a53cc3f55504f2578.tar.gz
Fix a bunch of linting errors.
Diffstat (limited to 'gn_auth/auth/authorisation/users/masquerade/models.py')
-rw-r--r--gn_auth/auth/authorisation/users/masquerade/models.py3
1 files changed, 2 insertions, 1 deletions
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: