Skip to content

Commit f4968e1

Browse files
nocover
1 parent 5f1c010 commit f4968e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httpcore/_synchronization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ async def shield(shielded: Callable[[], Coroutine[Any, Any, None]]) -> None:
241241
@staticmethod
242242
async def _asyncio_shield(
243243
shielded: Callable[[], Coroutine[Any, Any, None]],
244-
) -> None:
244+
) -> None: # pragma: nocover
245245
inner_task = asyncio.create_task(shielded())
246246
try:
247247
await asyncio.shield(inner_task)

0 commit comments

Comments
 (0)