TinyTerra / ComfyUI_tinyterraNodes

A selection of nodes for Stable Diffusion ComfyUI
GNU General Public License v3.0
397 stars 45 forks source link

Fix text concat #27

Closed Chubbly closed 1 year ago

Chubbly commented 1 year ago

Fixes issue mentioned in #26. I have no idea why this fixes it, my Python knowledge is near zero.

WingTangWong commented 1 year ago

@Chubbly interesting. So looks like in the original, the return statement returns concat as a String. The change you made has it return a tuple where the first element is a String. If this is what makes it work then whatever is calling it was expecting some kind of iterable array or tuple? Just thinking aloud.