From 2d89ef0acdbd5817e3aff41a707cd9f4e4f8e9e1 Mon Sep 17 00:00:00 2001 From: Pau Freixes Date: Mon, 3 Feb 2020 17:07:20 +0100 Subject: [PATCH] Fix pylint issue --- src/python/grpcio/grpc/experimental/aio/_channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/grpcio/grpc/experimental/aio/_channel.py b/src/python/grpcio/grpc/experimental/aio/_channel.py index 24692559c69..4abb6d69780 100644 --- a/src/python/grpcio/grpc/experimental/aio/_channel.py +++ b/src/python/grpcio/grpc/experimental/aio/_channel.py @@ -47,7 +47,7 @@ class _OngoingCalls: self._calls.remove(call) @property - def calls(self) -> Set[_base_call.RpcContext]: + def calls(self) -> AbstractSet[_base_call.RpcContext]: """Returns the set of ongoing calls.""" return self._calls