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:
parent
aef3fe8d50
commit
69721dc129
2 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue