From 6dafab7268e93be4d6e41072527ba0728e07c31f Mon Sep 17 00:00:00 2001 From: "Lt.Dr.Data" Date: Tue, 28 Mar 2023 13:59:50 +0900 Subject: [PATCH] update comment --- execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution.py b/execution.py index 864d9943f..ca1d89b84 100644 --- a/execution.py +++ b/execution.py @@ -247,7 +247,7 @@ def validate_inputs(prompt, item): if isinstance(type_input, list): if val not in type_input: - # bypass validation on special output + # bypass validation on special input if not val.endswith(" [OUT]") and not val.endswith(" [TEMP]"): return (False, "Value not in list. {}, {}: {} not in {}".format(class_type, x, val, type_input)) return (True, "")