Add INetStream to type StreamReader

TODO: Make stream readers implement `Reader`
This commit is contained in:
mhchia
2019-09-03 22:59:44 +08:00
parent c6d81d70b3
commit 4f7bb30d82
2 changed files with 2 additions and 2 deletions

View File

@ -9,5 +9,4 @@ if TYPE_CHECKING:
TProtocol = NewType("TProtocol", str)
StreamHandlerFn = Callable[["INetStream"], Awaitable[None]]
StreamReader = Union["IMuxedStream", IRawConnection]
StreamReader = Union["IMuxedStream", "INetStream", IRawConnection]