Fix pytype issue raised only with Python 3.7

pull/22713/head
Pau Freixes 5 years ago
parent 6000747f83
commit 6d4f3ce244
  1. 3
      src/python/grpcio_tests/tests_aio/unit/client_unary_stream_interceptor_test.py

@ -62,9 +62,6 @@ class _UnaryStreamInterceptorEmpty(aio.UnaryStreamClientInterceptor):
class _UnaryStreamInterceptorWithResponseIterator( class _UnaryStreamInterceptorWithResponseIterator(
aio.UnaryStreamClientInterceptor): aio.UnaryStreamClientInterceptor):
def __init__(self):
self.response_iterator = None
async def intercept_unary_stream(self, continuation, client_call_details, async def intercept_unary_stream(self, continuation, client_call_details,
request): request):
call = await continuation(client_call_details, request) call = await continuation(client_call_details, request)

Loading…
Cancel
Save