We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1cd382 commit e4525b0Copy full SHA for e4525b0
services/web/server/src/simcore_service_webserver/projects/_projects_db.py
@@ -84,10 +84,10 @@ async def list_trashed_projects(
84
total_count = await conn.scalar(count_query)
85
86
result = await conn.stream(list_query)
87
- folders: list[ProjectDBGet] = [
+ projects_list: list[ProjectDBGet] = [
88
ProjectDBGet.model_validate(row) async for row in result
89
]
90
- return cast(int, total_count), folders
+ return cast(int, total_count), projects_list
91
92
93
async def get_project(
0 commit comments