From 75dfb60a260188f0c910376eccc87da766c471f3 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 16:43:38 -0700 Subject: [PATCH] Update locationdata.py --- locationdata.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/locationdata.py b/locationdata.py index ca79e36..559c33b 100644 --- a/locationdata.py +++ b/locationdata.py @@ -25,8 +25,7 @@ def where_am_i(lat=0, lon=0): whereIam += " " + address['county'] if 'country' in address: whereIam += " " + address['country'] - print(whereIam) - print(lat, lon) - whereIam += " Grid: " + mh.to_maiden(f'lat',f'lon',6) + grid = mh.to_maiden(lat,lon,6) + print(grid) return whereIam \ No newline at end of file