diff --git a/execution.py b/execution.py index f93de8465..b8cf13e90 100644 --- a/execution.py +++ b/execution.py @@ -409,7 +409,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 r[val[1]] != type_input and type_input != "*": received_type = r[val[1]] details = f"{x}, {received_type} != {type_input}" error = {