File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
services/web/server/src/simcore_service_webserver/projects Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -217,9 +217,10 @@ async def patch_project_and_notify_users(
217217 new_partial_project_data = patch_project_data ,
218218 )
219219
220- project_document , document_version = (
221- await create_project_document_and_increment_version (app , project_uuid )
222- )
220+ (
221+ project_document ,
222+ document_version ,
223+ ) = await create_project_document_and_increment_version (app , project_uuid )
223224 await notify_project_document_updated (
224225 app = app ,
225226 project_id = project_uuid ,
@@ -693,6 +694,7 @@ def _check_required_input(required_input_key: KeyIDStr) -> None:
693694 if output_entry is None :
694695 unset_outputs_in_upstream .append ((source_output_key , source_node .label ))
695696
697+ assert isinstance (node .inputs_required , list ) # nosec
696698 for required_input in node .inputs_required :
697699 _check_required_input (required_input )
698700
You can’t perform that action at this time.
0 commit comments