Skip to content

Commit d3e1508

Browse files
remove obsolete downstream ignore
1 parent 736c487 commit d3e1508

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncstdlib/asynctools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(self, iterator: Union[AsyncIterator[T], AsyncGenerator[T, S]]):
4949
# An async *iterator* (e.g. `async def: yield`) must return
5050
# itself from __aiter__. If we do not shadow this then
5151
# running aiter(self).aclose closes the underlying iterator.
52-
self.__anext__ = self._wrapper.__anext__ # type: ignore
52+
self.__anext__ = self._wrapper.__anext__
5353
if hasattr(iterator, "asend"):
5454
self.asend = (
5555
iterator.asend # pyright: ignore[reportUnknownMemberType,reportAttributeAccessIssue]

0 commit comments

Comments
 (0)