Merge pull request #135 from adewale/patch-1

Minor tidying-up in Python Route Guide.
pull/3109/head
Nathaniel Manista 10 years ago
commit 98e2a61a0c
  1. 8
      python/route_guide/route_guide_client.py

@ -118,13 +118,13 @@ def guide_route_chat(stub):
def run(): def run():
with route_guide_pb2.early_adopter_create_RouteGuide_stub('localhost', 50051) as stub: with route_guide_pb2.early_adopter_create_RouteGuide_stub('localhost', 50051) as stub:
print "-------------- GetFeature --------------" print "-------------- GetFeature --------------"
guide_get_feature(stub); guide_get_feature(stub)
print "-------------- ListFeatures --------------" print "-------------- ListFeatures --------------"
guide_list_features(stub); guide_list_features(stub)
print "-------------- RecordRoute --------------" print "-------------- RecordRoute --------------"
guide_record_route(stub); guide_record_route(stub)
print "-------------- RouteChat --------------" print "-------------- RouteChat --------------"
guide_route_chat(stub); guide_route_chat(stub)
if __name__ == '__main__': if __name__ == '__main__':

Loading…
Cancel
Save