Update locationdata.py

This commit is contained in:
SpudGunMan
2024-06-19 15:38:40 -07:00
parent 97aa167e0b
commit 4a5b24229f
+2 -1
View File
@@ -9,5 +9,6 @@ def where_am_i(lat=0, lon=0):
location = geolocator.reverse(lat+","+lon)
address = location.raw['address']
whereIam = address['house_number'] + " " + address['road'] + ", " + address['city'] + ", " + address['state'] + " " + address['postcode']
return address
return whereIam