From b87f55ed65a4b9adf0a9de4d016de8f7a9432012 Mon Sep 17 00:00:00 2001 From: Yoland Y <4950057+yoland68@users.noreply.github.com> Date: Mon, 10 Mar 2025 15:04:37 -0700 Subject: [PATCH] Move allow batch execution logic to different PR --- execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution.py b/execution.py index bfcaaa72..54b79aad 100644 --- a/execution.py +++ b/execution.py @@ -584,7 +584,7 @@ def validate_inputs(prompt, item, validated): val = inputs[x] info = (type_input, extra_info) if isinstance(val, list): - if len(val) != 2 and not extra_info.get("allow_batch", False): + if len(val) != 2: error = { "type": "bad_linked_input", "message": "Bad linked input, must be a length-2 list of [node_id, slot_index]",