Skip to content

Commit b6e944b

Browse files
committed
Try fixing no-coverage
1 parent ba68697 commit b6e944b

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
@@ -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

0 commit comments

Comments
 (0)