Fix typo in typing.pyi (#2595)

This commit is contained in:
Marco Leogrande
2018-11-08 18:41:53 -08:00
committed by Jelle Zijlstra
parent 1a42a2c3ea
commit e58a338d51

View File

@@ -184,7 +184,7 @@ class Coroutine(Awaitable[_V_co], Generic[_T_co, _T_contra, _V_co]):
# NOTE: This type does not exist in typing.py or PEP 484.
# The parameters corrrespond to Generator, but the 4th is the original type.
# The parameters correspond to Generator, but the 4th is the original type.
class AwaitableGenerator(Awaitable[_V_co], Generator[_T_co, _T_contra, _V_co],
Generic[_T_co, _T_contra, _V_co, _S], metaclass=ABCMeta): ...