mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
Slightly better errors.
This commit is contained in:
parent
7996420fe4
commit
bc475f86c4
7
main.py
7
main.py
@ -220,7 +220,7 @@ def validate_inputs(prompt, item):
|
||||
|
||||
if isinstance(type_input, list):
|
||||
if val not in type_input:
|
||||
return (False, "Value not in list. {}, {}".format(class_type, x))
|
||||
return (False, "Value not in list. {}, {}: {} not in {}".format(class_type, x, val, type_input))
|
||||
return (True, "")
|
||||
|
||||
def validate_prompt(prompt):
|
||||
@ -234,6 +234,7 @@ def validate_prompt(prompt):
|
||||
return (False, "Prompt has no outputs")
|
||||
|
||||
good_outputs = set()
|
||||
errors = []
|
||||
for o in outputs:
|
||||
valid = False
|
||||
reason = ""
|
||||
@ -250,9 +251,11 @@ def validate_prompt(prompt):
|
||||
else:
|
||||
print("Failed to validate prompt for output {} {}".format(o, reason))
|
||||
print("output will be ignored")
|
||||
errors += [(o, reason)]
|
||||
|
||||
if len(good_outputs) == 0:
|
||||
return (False, "Prompt has no properly connected outputs")
|
||||
errors_list = "\n".join(map(lambda a: "{}".format(a[1]), errors))
|
||||
return (False, "Prompt has no properly connected outputs\n {}".format(errors_list))
|
||||
|
||||
return (True, "")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user