aboutsummaryrefslogtreecommitdiff
path: root/gn3/auth/authorisation/resources/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/auth/authorisation/resources/models.py')
-rw-r--r--gn3/auth/authorisation/resources/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/auth/authorisation/resources/models.py b/gn3/auth/authorisation/resources/models.py
index 13f234f..be1bc17 100644
--- a/gn3/auth/authorisation/resources/models.py
+++ b/gn3/auth/authorisation/resources/models.py
@@ -414,12 +414,12 @@ def __attach_data__(
**acc,
resource_id: acc.get(resource_id, tuple()) + (dict(row),)
}
- organised = reduce(__organise__, data_rows, {})
+ organised: dict[UUID, tuple[dict, ...]] = reduce(__organise__, data_rows, {})
return tuple(
Resource(
resource.group, resource.resource_id, resource.resource_name,
resource.resource_category, resource.public,
- organised[resource.resource_id])
+ organised.get(resource.resource_id, tuple()))
for resource in resources)
def attach_mrna_resources_data(