chore: remove print from function
Browse files
app/geolocalisation/js_geolocation.py
CHANGED
@@ -37,8 +37,6 @@ js_geocode = """
|
|
37 |
|
38 |
def display_location(location_json, individual):
|
39 |
geo_dict = json.loads(location_json)
|
40 |
-
print(geo_dict)
|
41 |
-
print(geo_dict["error"])
|
42 |
latitude = geo_dict["latitude"]
|
43 |
longitude = geo_dict["longitude"]
|
44 |
geolocalisation = create_geolocalisation_object(latitude, longitude, "NA")
|
|
|
37 |
|
38 |
def display_location(location_json, individual):
|
39 |
geo_dict = json.loads(location_json)
|
|
|
|
|
40 |
latitude = geo_dict["latitude"]
|
41 |
longitude = geo_dict["longitude"]
|
42 |
geolocalisation = create_geolocalisation_object(latitude, longitude, "NA")
|