Skip to content
This repository has been archived by the owner on Dec 27, 2021. It is now read-only.

Commit

Permalink
Fix return type of asyncio.Queue.join (python#4751)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgeronimi authored Nov 9, 2020
1 parent 0e4a92f commit b3abdc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/3/asyncio/queues.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Queue(Generic[_T]):
def put_nowait(self, item: _T) -> None: ...
async def get(self) -> _T: ...
def get_nowait(self) -> _T: ...
async def join(self) -> bool: ...
async def join(self) -> None: ...
def task_done(self) -> None: ...
if sys.version_info >= (3, 9):
def __class_getitem__(cls, type: Any) -> GenericAlias: ...
Expand Down

0 comments on commit b3abdc3

Please sign in to comment.