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 e76f5e7 commit 7ea3e4cCopy full SHA for 7ea3e4c
services/web/server/src/simcore_service_webserver/projects/_projects_repository_legacy.py
@@ -786,9 +786,10 @@ async def get_project_dict_and_type(
786
async def get_project_db(self, project_uuid: ProjectID) -> ProjectDBGet:
787
async with self.engine.acquire() as conn:
788
result = await conn.execute(
789
- sa.select(*PROJECT_DB_COLS, projects.c.workbench).where(
790
- projects.c.uuid == f"{project_uuid}"
791
- )
+ sa.select(
+ *PROJECT_DB_COLS,
+ projects.c.workbench,
792
+ ).where(projects.c.uuid == f"{project_uuid}")
793
)
794
row = await result.fetchone()
795
if row is None:
0 commit comments