From 4a5b24229fbe4305629b0c115602ba3c75c5565d Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 19 Jun 2024 15:38:40 -0700 Subject: [PATCH] Update locationdata.py --- locationdata.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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