File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
api-server/src/simcore_service_api_server/services_http
web/server/src/simcore_service_webserver/projects Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ def create_new_project_for_job(
167167 },
168168 },
169169 slideshow = {},
170- currentNodeId = solver_id , # type: ignore[arg-type]
170+ current_node_id = solver_id , # type: ignore[arg-type]
171171 annotations = {},
172172 ),
173173 accessRights = {}, # type: ignore[call-arg] # This MUST be called with alias
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ async def create_project(request: web.Request):
132132 # this entrypoint are in reality multiple entrypoints in one, namely
133133 # :create, :copy (w/ and w/o override)
134134 # NOTE: see clone_project
135+ predefined_project : ProjectDict | None
135136
136137 if not request .can_read_body :
137138 # request w/o body
@@ -144,9 +145,7 @@ async def create_project(request: web.Request):
144145 ProjectCreateNew | ProjectCopyOverride | EmptyModel , # type: ignore[arg-type] # from pydantic v2 --> https://github.com/pydantic/pydantic/discussions/4950
145146 request ,
146147 )
147- predefined_project : ProjectDict | None = (
148- project_create .to_domain_model () or None
149- )
148+ predefined_project = project_create .to_domain_model () or None
150149
151150 return await start_long_running_task (
152151 request ,
You can’t perform that action at this time.
0 commit comments