Skip to content

Commit 61b5731

Browse files
fix typecheck
1 parent 39a835f commit 61b5731

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

services/web/server/src/simcore_service_webserver/projects/projects_service.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,8 +555,9 @@ def _check_required_input(required_input_key: KeyIDStr) -> None:
555555
if output_entry is None:
556556
unset_outputs_in_upstream.append((source_output_key, source_node.label))
557557

558-
for required_input in node.inputs_required:
559-
_check_required_input(required_input)
558+
if node.inputs_required is not None:
559+
for required_input in node.inputs_required:
560+
_check_required_input(required_input)
560561

561562
node_with_required_inputs = node.label
562563
if unset_required_inputs:

0 commit comments

Comments
 (0)