mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-31 16:50:17 +08:00
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
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:
parent
03a1a1f96e
commit
3290783a7e
@ -20,7 +20,11 @@ class ConvertToList(io.ComfyNode):
|
|||||||
search_aliases=["Image Iterator", "Text Iterator", "Iterator"],
|
search_aliases=["Image Iterator", "Text Iterator", "Iterator"],
|
||||||
inputs=[_io.Autogrow.Input("inputs", template=template_autogrow)],
|
inputs=[_io.Autogrow.Input("inputs", template=template_autogrow)],
|
||||||
outputs=[
|
outputs=[
|
||||||
io.MatchType.Output(template=template_matchtype, is_output_list=True),
|
io.MatchType.Output(
|
||||||
|
template=template_matchtype,
|
||||||
|
is_output_list=True,
|
||||||
|
display_name="list",
|
||||||
|
),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user