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