Skip to content

Commit

Permalink
Fixed name inconsistencies in output
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-asplin-met-no committed Nov 1, 2023
1 parent fff2703 commit 35baa62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/clients/python/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 35baa62

Please sign in to comment.