We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca6f5ce commit 80c459aCopy full SHA for 80c459a
src/pdl/pdl_interpreter.py
@@ -798,10 +798,10 @@ def process_block_body(
798
)
799
repeat_loc = append(loc, "repeat")
800
iidx = 0
801
- first = True
802
- saved_background: PdlLazy[list[dict[str, Any]]] = PdlList([])
803
- while True:
804
- try:
+ try:
+ first = True
+ saved_background: PdlLazy[list[dict[str, Any]]] = PdlList([])
+ while True:
805
if max_iterations is not None and iidx >= max_iterations:
806
break
807
if lengths is not None and iidx >= lengths[0]:
0 commit comments