From 7e4bc4451b6c37c1953dfa4b955213ffcd6504ee Mon Sep 17 00:00:00 2001 From: Jacob Segal Date: Thu, 22 Jun 2023 18:54:07 -0700 Subject: [PATCH] Enable the use of variant types in node out/input --- execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution.py b/execution.py index a40b1dd36..94bcc30bc 100644 --- a/execution.py +++ b/execution.py @@ -425,7 +425,7 @@ def validate_inputs(prompt, item, validated): o_id = val[0] o_class_type = prompt[o_id]['class_type'] r = nodes.NODE_CLASS_MAPPINGS[o_class_type].RETURN_TYPES - if r[val[1]] != type_input: + if type_input != "*" and r[val[1]] != "*" and r[val[1]] != type_input: received_type = r[val[1]] details = f"{x}, {received_type} != {type_input}" error = {