fix: Wireless cyclic index remains unchanged (#4083)
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run

This commit is contained in:
shaohuzhang1 2025-09-23 12:43:53 +08:00 committed by GitHub
parent 15af6c97f8
commit 525e2091b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -115,6 +115,7 @@ def generate_while_loop(current_index: int):
index = current_index
while True:
yield index, index
index += 1
def loop(workflow_manage_new_instance, node: INode, generate_loop):