From 61608a9fcb14051e67d896c7b79eb8aab1bfb46b Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 14 Dec 2025 10:30:43 -0500 Subject: [PATCH] Update gps_client.py remove extra prints --- gps_client.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gps_client.py b/gps_client.py index 02034944..d7910b20 100644 --- a/gps_client.py +++ b/gps_client.py @@ -48,15 +48,14 @@ try: lon = session.fix.longitude if gps.isfinite(session.fix.altitude): alt = session.fix.altitude - print("%.6f %.6f %.6f" % - (session.fix.latitude, session.fix.longitude, session.fix.altitude)) +# print("%.6f %.6f %.6f" % (session.fix.latitude, session.fix.longitude, session.fix.altitude)) # else: # print(" 0 0 0") except KeyboardInterrupt: # got a ^C. Say bye, bye - print('') +# print('') # Got ^C, or fell out of the loop. Cleanup, and leave. session.close()