ltdrdata / ComfyUI-Impact-Pack

Custom nodes pack for ComfyUI This custom node helps to conveniently enhance images through Detector, Detailer, Upscaler, Pipe, and more.
GNU General Public License v3.0
1.44k stars 144 forks source link

[Feature] Make YAML wildcard support "k: v" pairs #642

Closed PurplefinNeptuna closed 1 week ago

PurplefinNeptuna commented 2 weeks ago

Currently this is not supported. sorry for dirty examples: image I usually use them like __boob/*/*__

ltdrdata commented 1 week ago

What is the meaning of that?

PurplefinNeptuna commented 1 week ago

currently the wildcard only accepting dictionary values as list or dictionary, not a string example:

# Key contain a list is working
A:
  - B
  - C

# Key contain dict is also working
A:
  B:
    - C
  D:
    - E

# But if the key's value is a string, it doesn't work
A: B

# This also doesn't work
A:
  B: C

# Both example above are valid YAML, but not working as wildcard YAML
ltdrdata commented 1 week ago

This is implemented.