Add missing comma and output display name

This commit is contained in:
Austin Mroz 2026-01-29 20:24:15 -08:00
parent 9e91a00130
commit ef208d0ba7
No known key found for this signature in database

View File

@ -20,7 +20,11 @@ class ConvertToList(io.ComfyNode):
search_aliases=["Image Iterator", "Text Iterator", "Iterator"],
inputs=[_io.Autogrow.Input("inputs", template=template_autogrow)],
outputs=[
io.MatchType.Output(template=template_matchtype, is_output_list=True),
io.MatchType.Output(
template=template_matchtype,
is_output_list=True,
display_name="list",
),
],
)