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 39a835f commit 61b5731Copy full SHA for 61b5731
services/web/server/src/simcore_service_webserver/projects/projects_service.py
@@ -555,8 +555,9 @@ def _check_required_input(required_input_key: KeyIDStr) -> None:
555
if output_entry is None:
556
unset_outputs_in_upstream.append((source_output_key, source_node.label))
557
558
- for required_input in node.inputs_required:
559
- _check_required_input(required_input)
+ if node.inputs_required is not None:
+ for required_input in node.inputs_required:
560
+ _check_required_input(required_input)
561
562
node_with_required_inputs = node.label
563
if unset_required_inputs:
0 commit comments