File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ class StreamMeta(TypedDict):
125125 span : Span
126126 release_backpressured_waiter : Callable [[], None ]
127127 error_channel : Channel [Exception ]
128- output : Channel [Any ]
128+ output : Channel [ResultType ]
129129
130130
131131class Session [HandshakeMetadata ]:
@@ -600,7 +600,7 @@ async def _with_stream(
600600 since the first event does not care about backpressure, but subsequent events
601601 emitted should call await error_channel.wait() prior to emission.
602602 """
603- output : Channel [Any ] = Channel (maxsize = maxsize )
603+ output : Channel [ResultType ] = Channel (maxsize = maxsize )
604604 backpressured_waiter_event : asyncio .Event = asyncio .Event ()
605605 error_channel : Channel [Exception ] = Channel (maxsize = 1 )
606606 self ._streams [stream_id ] = {
You can’t perform that action at this time.
0 commit comments