Update locationdata.py

This commit is contained in:
SpudGunMan
2024-06-19 16:44:59 -07:00
parent 75dfb60a26
commit f0919ddbb4
+1 -1
View File
@@ -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