fix: Wireless cyclic index remains unchanged (#4083)

v3.2
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
1 changed files with 1 additions and 0 deletions

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):