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 @@ -621,12 +621,12 @@ async def iter_graph( # noqa C901
621621 for new_task in maybe_overridden_result :
622622 self .active_tasks [new_task .task_id ] = new_task
623623 new_task_ids = {t .task_id for t in maybe_overridden_result }
624- for t in new_tasks : # pragma: no cover
624+ for t in new_tasks :
625625 # Same note as above about how this is theoretically reachable but we should
626626 # just get coverage by unifying the code paths
627- if t .task_id not in new_task_ids :
627+ if t .task_id not in new_task_ids : # pragma: no cover
628628 await self ._finish_task (t .task_id )
629- self ._handle_execution_request (maybe_overridden_result )
629+ self ._handle_execution_request (maybe_overridden_result ) # pragma: no cover
630630 except GeneratorExit :
631631 return
632632
You can’t perform that action at this time.
0 commit comments