diff --git a/app/backend/wells/signals.py b/app/backend/wells/signals.py index df6d2a53a..c209c3a58 100644 --- a/app/backend/wells/signals.py +++ b/app/backend/wells/signals.py @@ -63,8 +63,6 @@ def set_well_attributes(instance): instance (Well instance): The instance of Well being processed. """ geocoded_address = reverse_geocode(instance.longitude, instance.latitude) - print("geocoded_address") - print(geocoded_address) instance.geocode_distance = calculate_geocode_distance(geocoded_address) instance.distance_to_pid = calculate_pid_distance_for_well(instance) instance.score_address = calculate_score_address(instance, geocoded_address) diff --git a/app/backend/wells/utils.py b/app/backend/wells/utils.py index 0bd0deda4..27b270f66 100644 --- a/app/backend/wells/utils.py +++ b/app/backend/wells/utils.py @@ -74,8 +74,6 @@ def calculate_natural_resource_region_for_well(well): # Construct the request URL request_url = f"{base_url}?{'&'.join([f'{k}={v}' for k, v in params.items()])}" - print(request_url) - # Make the request response = requests.get(request_url) if response.status_code != 200: