aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/unit/_cython/test_utilities.py
diff options
context:
space:
mode:
authorGravatar Mehrdad Afshari <mmx@google.com>2018-04-18 23:48:15 -0700
committerGravatar Mehrdad Afshari <mehrdada@users.noreply.github.com>2018-04-19 10:39:39 -0700
commitdd9697fef8103b93cc9ecfbc71fa83cd838f1398 (patch)
tree4569d52a265241a52dbe1da80b5c366b72ec9217 /src/python/grpcio_tests/tests/unit/_cython/test_utilities.py
parent161194616190d82c85f2e9d5325a8fc39509909c (diff)
Eliminate broad-except suppression
Diffstat (limited to 'src/python/grpcio_tests/tests/unit/_cython/test_utilities.py')
-rw-r--r--src/python/grpcio_tests/tests/unit/_cython/test_utilities.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio_tests/tests/unit/_cython/test_utilities.py b/src/python/grpcio_tests/tests/unit/_cython/test_utilities.py
index ee5c7795a9..7d5eaaaa84 100644
--- a/src/python/grpcio_tests/tests/unit/_cython/test_utilities.py
+++ b/src/python/grpcio_tests/tests/unit/_cython/test_utilities.py
@@ -25,7 +25,7 @@ class SimpleFuture(object):
def wrapped_function():
try:
self._result = function(*args, **kwargs)
- except Exception as error:
+ except Exception as error: # pylint: disable=broad-except
self._error = error
self._result = None