Skip to content

Commit

Permalink
chore: debug cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jan 18, 2024
1 parent 150c989 commit e92d341
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions app/backend/wells/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 0 additions & 2 deletions app/backend/wells/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e92d341

Please sign in to comment.