diff options
author | Mehrdad Afshari <mmx@google.com> | 2018-06-07 23:32:46 -0700 |
---|---|---|
committer | Mehrdad Afshari <mmx@google.com> | 2018-06-07 23:32:46 -0700 |
commit | bfbd192a826eb6af8723c0ba540c63463aea4e8c (patch) | |
tree | 05917f322070512f1ba31fdcb1c4e80a71681212 /src/python/grpcio_tests | |
parent | b6955d996fdf8002f63615ff726656dff17c0b78 (diff) |
Fix raising-format-tuple pylint warning
Diffstat (limited to 'src/python/grpcio_tests')
-rw-r--r-- | src/python/grpcio_tests/tests/interop/methods.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio_tests/tests/interop/methods.py b/src/python/grpcio_tests/tests/interop/methods.py index b728ffd704..1ff457b997 100644 --- a/src/python/grpcio_tests/tests/interop/methods.py +++ b/src/python/grpcio_tests/tests/interop/methods.py @@ -144,7 +144,7 @@ def _large_unary_common_behavior(stub, fill_username, fill_oauth_scope, def _empty_unary(stub): response = stub.EmptyCall(empty_pb2.Empty()) if not isinstance(response, empty_pb2.Empty): - raise TypeError('response is of type "%s", not empty_pb2.Empty!', + raise TypeError('response is of type "%s", not empty_pb2.Empty!' % type(response)) |