Skip to content

Commit e1b8401

Browse files
revert gid cast
1 parent 399abc8 commit e1b8401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

5959
# validate

0 commit comments

Comments
 (0)