aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/grpc/_channel.py
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2017-06-24 21:03:21 +0000
committerGravatar Nathaniel Manista <nathaniel@google.com>2017-06-24 21:03:21 +0000
commit37c83ffbed4e01f02d4fdee3e8e9156e877d4608 (patch)
tree25f61f37bbbb338b68f2172e8317fe89e0be52c8 /src/python/grpcio/grpc/_channel.py
parenta7182f7f5a7253bbcd33eabff1b3ec4fb686edb0 (diff)
Enable redefined-variable-type lint
Diffstat (limited to 'src/python/grpcio/grpc/_channel.py')
-rw-r--r--src/python/grpcio/grpc/_channel.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/python/grpcio/grpc/_channel.py b/src/python/grpcio/grpc/_channel.py
index 1562c3e24d..cf4ce0941b 100644
--- a/src/python/grpcio/grpc/_channel.py
+++ b/src/python/grpcio/grpc/_channel.py
@@ -849,7 +849,10 @@ def _poll_connectivity(state, channel, initial_try_to_connect):
_common.CYGRPC_CONNECTIVITY_STATE_TO_CHANNEL_CONNECTIVITY[
connectivity])
if not state.delivering:
- callbacks = _deliveries(state)
+ # NOTE(nathaniel): The field is only ever used as a
+ # sequence so it's fine that both lists and tuples are
+ # assigned to it.
+ callbacks = _deliveries(state) # pylint: disable=redefined-variable-type
if callbacks:
_spawn_delivery(state, callbacks)