Add missing comma and output display name
Some checks are pending
Python Linting / Run Pylint (push) Waiting to run
Build package / Build Test (3.11) (push) Waiting to run
Build package / Build Test (3.12) (push) Waiting to run
Build package / Build Test (3.13) (push) Waiting to run
Build package / Build Test (3.14) (push) Waiting to run
Python Linting / Run Ruff (push) Waiting to run
Build package / Build Test (3.10) (push) Waiting to run

This commit is contained in:
Austin Mroz 2026-01-29 20:24:15 -08:00
parent 03a1a1f96e
commit 3290783a7e
No known key found for this signature in database
2 changed files with 6 additions and 2 deletions

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",
),
],
)

View File

@ -2432,7 +2432,7 @@ async def init_builtin_extra_nodes():
"nodes_wanmove.py",
"nodes_image_compare.py",
"nodes_zimage.py",
"nodes_lora_debug.py"
"nodes_lora_debug.py",
"nodes_toolkit.py",
]