File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
pydantic_graph/pydantic_graph/beta Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments