Skip to content

Commit 80c459a

Browse files
fix rebase inconsistency
Signed-off-by: hirokuni-kitahara <[email protected]>
1 parent ca6f5ce commit 80c459a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pdl/pdl_interpreter.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -798,10 +798,10 @@ def process_block_body(
798798
)
799799
repeat_loc = append(loc, "repeat")
800800
iidx = 0
801-
first = True
802-
saved_background: PdlLazy[list[dict[str, Any]]] = PdlList([])
803-
while True:
804-
try:
801+
try:
802+
first = True
803+
saved_background: PdlLazy[list[dict[str, Any]]] = PdlList([])
804+
while True:
805805
if max_iterations is not None and iidx >= max_iterations:
806806
break
807807
if lengths is not None and iidx >= lengths[0]:

0 commit comments

Comments
 (0)