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 3156531 commit 7b07b66Copy full SHA for 7b07b66
services/web/server/src/simcore_service_webserver/projects/_projects_service.py
@@ -681,8 +681,9 @@ def _check_required_input(required_input_key: KeyIDStr) -> None:
681
if output_entry is None:
682
unset_outputs_in_upstream.append((source_output_key, source_node.label))
683
684
- for required_input in node.inputs_required:
685
- _check_required_input(required_input)
+ if node.inputs_required:
+ for required_input in node.inputs_required:
686
+ _check_required_input(required_input)
687
688
node_with_required_inputs = node.label
689
if unset_required_inputs:
0 commit comments