grpc: updated client edit_node to have source as last parameter to be consistent with source placement on all other functions

This commit is contained in:
Blake Harnden 2020-06-30 09:32:56 -07:00
parent aef3fe8d50
commit 69721dc129
2 changed files with 3 additions and 3 deletions

View file

@ -221,7 +221,7 @@ def edit_node(args: Namespace) -> None:
geo = Geo(lon=lon, lat=lat, alt=alt)
core = CoreGrpcClient()
with core.context_connect():
response = core.edit_node(session_id, args.id, pos, args.icon, geo=geo)
response = core.edit_node(session_id, args.id, pos, args.icon, geo)
if args.json:
json = MessageToJson(response, preserving_proto_field_name=True)
print(json)