diff --git a/locationdata.py b/locationdata.py index cf00ba2..fb0af09 100644 --- a/locationdata.py +++ b/locationdata.py @@ -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 \ No newline at end of file + return whereIam \ No newline at end of file