From 35baa625bc61e3f9e17095c541222f5a54048a91 Mon Sep 17 00:00:00 2001 From: Jo Asplin Date: Wed, 1 Nov 2023 10:55:20 +0100 Subject: [PATCH] Fixed name inconsistencies in output --- examples/clients/python/client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/clients/python/client.py b/examples/clients/python/client.py index 9f05d2c..427cf6c 100755 --- a/examples/clients/python/client.py +++ b/examples/clients/python/client.py @@ -94,13 +94,13 @@ def call_get_obs_in_polygon(stub): value = "12.7" response = call_put_obs(stub, version, type, standard_name, unit, value) - print("response from callPutObs: {}".format(response)) + print("response from call_put_obs: {}".format(response)) response = call_get_obs_in_time_range(stub) - print("response from callGetObsInTimeRange: {}".format(response)) + print("response from call_get_obs_in_time_range: {}".format(response)) response = call_get_obs_in_polygon(stub) - print("response from callGetObsInPolygon: {}".format(response)) + print("response from call_get_obs_in_polygon: {}".format(response)) assert len(response.observations) == 1 obs0 = response.observations[0]