From ac265777711a45d4ae66e0367af3af0f591a2827 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 14 Dec 2025 07:34:56 -0500 Subject: [PATCH] Update gps_client.py fix print --- gps_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gps_client.py b/gps_client.py index ba2bdafd..e58b02dc 100644 --- a/gps_client.py +++ b/gps_client.py @@ -59,5 +59,5 @@ except KeyboardInterrupt: # Got ^C, or fell out of the loop. Cleanup, and leave. session.close() -print("%.6f %.6f %.1" % lat, lon, alt) +print("%.6f %.6f %.1f" % lat, lon, alt) exit(0)