aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Youngchan Kim <ovekyc@gmail.com>2018-10-23 13:43:31 +0900
committerGravatar Youngchan Kim <ovekyc@gmail.com>2018-10-23 13:45:25 +0900
commit2e2ef9dcdf0cdd7bf6958bbfc10c3af56552a07c (patch)
tree37aa0c25e4615006eddf0124810629fe56653ef1 /examples
parent832460bb94a77080c4750d4d832fec92898763a3 (diff)
Run YAPF check for python example
Diffstat (limited to 'examples')
-rw-r--r--examples/python/helloworld/greeter_client_with_options.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/python/helloworld/greeter_client_with_options.py b/examples/python/helloworld/greeter_client_with_options.py
index 2dbfd9e4ca..7eda8c9066 100644
--- a/examples/python/helloworld/greeter_client_with_options.py
+++ b/examples/python/helloworld/greeter_client_with_options.py
@@ -30,12 +30,13 @@ def run():
with grpc.insecure_channel(
target='localhost:50051',
options=[('grpc.lb_policy_name', 'pick_first'),
- ('grpc.enable_retries', 0),
- ('grpc.keepalive_timeout_ms', 10000)]) as channel:
+ ('grpc.enable_retries', 0), ('grpc.keepalive_timeout_ms',
+ 10000)]) as channel:
stub = helloworld_pb2_grpc.GreeterStub(channel)
# Timeout in seconds.
# Please refer gRPC Python documents for more detail. https://grpc.io/grpc/python/grpc.html
- response = stub.SayHello(helloworld_pb2.HelloRequest(name='you'), timeout=10)
+ response = stub.SayHello(
+ helloworld_pb2.HelloRequest(name='you'), timeout=10)
print("Greeter client received: " + response.message)