Imported Upstream version 1.27.0
[platform/upstream/grpc.git] / examples / python / helloworld / greeter_client_with_options.py
index e9ab550..74c6a15 100644 (file)
@@ -28,16 +28,16 @@ def run():
     # of the code.
     #
     # For more channel options, please see https://grpc.io/grpc/core/group__grpc__arg__keys.html
-    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:
+    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:
         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)