File tree 1 file changed +2
-2
lines changed
cirq-google/cirq_google/engine
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,12 +70,12 @@ class FakeQuantumRunStream:
70
70
71
71
_REQUEST_STOPPED = 'REQUEST_STOPPED'
72
72
73
- def __init__ (self ):
73
+ def __init__ (self ) -> None :
74
74
self .all_stream_requests : List [quantum .QuantumRunStreamRequest ] = []
75
75
self .all_cancel_requests : List [quantum .CancelQuantumJobRequest ] = []
76
76
self ._executor = AsyncioExecutor .instance ()
77
77
self ._request_buffer = duet .AsyncCollector [quantum .QuantumRunStreamRequest ]()
78
- self ._request_iterator_stopped = duet .AwaitableFuture ()
78
+ self ._request_iterator_stopped : duet . AwaitableFuture [ None ] = duet .AwaitableFuture ()
79
79
# asyncio.Queue needs to be initialized inside the asyncio thread because all callers need
80
80
# to use the same event loop.
81
81
self ._responses_and_exceptions_future : duet .AwaitableFuture [
You can’t perform that action at this time.
0 commit comments