From f97bf05169795c1200f480faa422b00a83bb0b30 Mon Sep 17 00:00:00 2001 From: francisco souza <108725+fsouza@users.noreply.github.com> Date: Mon, 13 Sep 2021 19:25:53 -0400 Subject: [PATCH] python: fix type annotation for the _metadata field (#27251) It's a tuple with many MetadatumType's. Co-authored-by: francisco souza --- src/python/grpcio/grpc/aio/_call.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/grpcio/grpc/aio/_call.py b/src/python/grpcio/grpc/aio/_call.py index ef3a624bec4..5a414c8e3e1 100644 --- a/src/python/grpcio/grpc/aio/_call.py +++ b/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