We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eb7ac2 commit 2fff214Copy full SHA for 2fff214
1 file changed
tests/test_bound_stream.py
@@ -19,7 +19,7 @@ class MockSyncStream(SyncByteStream):
19
def __init__(self) -> None:
20
self.closed = False
21
22
- def __iter__(self) -> typing.Iterator[bytes]:
+ def __iter__(self) -> typing.Iterator[bytes]: # pragma: no cover
23
yield b"test"
24
25
def close(self) -> None:
@@ -30,7 +30,7 @@ class MockAsyncStream(AsyncByteStream):
30
31
32
33
- async def __aiter__(self) -> typing.AsyncIterator[bytes]:
+ async def __aiter__(self) -> typing.AsyncIterator[bytes]: # pragma: no cover
34
35
36
async def aclose(self) -> None:
0 commit comments