python: fix type annotation for the _metadata field (#27251)

It's a tuple with many MetadatumType's.

Co-authored-by: francisco souza <fsouza@users.noreply.github.com>
reviewable/pr27347/r1
francisco souza 4 years ago committed by GitHub
parent 5dbb13982f
commit f97bf05169
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/python/grpcio/grpc/aio/_call.py

@ -165,7 +165,7 @@ class Call:
_loop: asyncio.AbstractEventLoop
_code: grpc.StatusCode
_cython_call: cygrpc._AioCall
_metadata: Tuple[MetadatumType]
_metadata: Tuple[MetadatumType, ...]
_request_serializer: SerializingFunction
_response_deserializer: DeserializingFunction

Loading…
Cancel
Save