about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn_auth/auth/authorisation/resources/views.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/gn_auth/auth/authorisation/resources/views.py b/gn_auth/auth/authorisation/resources/views.py
index 5c2b66e..cf9ebc4 100644
--- a/gn_auth/auth/authorisation/resources/views.py
+++ b/gn_auth/auth/authorisation/resources/views.py
@@ -553,9 +553,10 @@ def unassign_resource_role_privilege(resource_id: UUID, role_id: UUID):
             raise AuthorisationError(
                 "You need to provide a privilege to unassign")
 
-        delete_privilege_from_resource_role(cursor,
-                                            _role,
-                                            privilege_by_id(conn, privilege_id))
+        delete_privilege_from_resource_role(
+            cursor,
+            _role,# type: ignore[arg-type]
+            privilege_by_id(conn, privilege_id))# type: ignore[arg-type]
 
         return jsonify({
             "status": "Success",