Skip to content

Commit 7d39f04

Browse files
committed
Fix coverage
1 parent 79726fe commit 7d39f04

File tree

1 file changed

+3
-3
lines changed
  • pydantic_graph/pydantic_graph/beta

1 file changed

+3
-3
lines changed

pydantic_graph/pydantic_graph/beta/graph.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -625,12 +625,12 @@ async def iter_graph( # noqa C901
625625
join_parent_fork_run_id = None
626626
other_parent_fork_run_id = None
627627

628-
for fsi in join_state.downstream_fork_stack:
628+
for fsi in join_state.downstream_fork_stack: # pragma: no branch
629629
if fsi.fork_id == join_parent_fork.fork_id:
630630
join_parent_fork_run_id = fsi.node_run_id
631631
break
632632

633-
for fsi in other_join_state.downstream_fork_stack:
633+
for fsi in other_join_state.downstream_fork_stack: # pragma: no branch
634634
if fsi.fork_id == join_parent_fork.fork_id:
635635
other_parent_fork_run_id = fsi.node_run_id
636636
break
@@ -639,7 +639,7 @@ async def iter_graph( # noqa C901
639639
join_parent_fork_run_id
640640
and other_parent_fork_run_id
641641
and join_parent_fork_run_id == other_parent_fork_run_id
642-
):
642+
): # pragma: no branch
643643
should_skip = True
644644
break
645645
if should_skip:

0 commit comments

Comments
 (0)