Skip to content

Commit 708c7c5

Browse files
committed
small bug in get coords
1 parent 085123f commit 708c7c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/meshcore_cli/meshcore_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ async def next_cmd(mc, cmds, json_output=False):
513513
if json_output :
514514
print(json.dumps({"lat": mc.self_info["adv_lat"], "lon":mc.self_info["adv_lon"]}))
515515
else:
516-
print(print(f"{mc.self_info['adv_lat']},{mc.self_info['adv_lon']}"))
516+
print(f"{mc.self_info['adv_lat']},{mc.self_info['adv_lon']}")
517517
case "radio":
518518
if json_output :
519519
print(json.dumps(

0 commit comments

Comments
 (0)