pydn / ComfyUI-to-Python-Extension

A powerful tool that translates ComfyUI workflows into executable Python code.
MIT License
850 stars 88 forks source link

2023 08 07 correct queue logic #1

Closed pydn closed 11 months ago

pydn commented 11 months ago

Correct the code generation for loop logic. Previously, the code would loop queue_size - 1 times. For example, if the queue_size was 10, the code would only loop 9 times. Now it properly loops queue_size times.