Skip to content

Commit cf8ddbe

Browse files
author
Andrei Neagu
committed
fixed broken tests
1 parent e7a9e9d commit cf8ddbe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

services/web/server/src/simcore_service_webserver/projects/_crud_api_read.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ async def _append_fields(
5353
# replace project access rights (if project is in workspace)
5454
if workspace_access_rights:
5555
project["accessRights"] = {
56-
gid: access.model_dump() for gid, access in workspace_access_rights.items()
56+
f"{gid}": access.model_dump()
57+
for gid, access in workspace_access_rights.items()
5758
}
5859

5960
# validate

0 commit comments

Comments
 (0)