Skip to content

Commit

Permalink
FIX: Remove verify warning, but setting verify to true.
Browse files Browse the repository at this point in the history
  • Loading branch information
zssherman committed Oct 10, 2023
1 parent 5c273b4 commit f562789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion act/discovery/get_cropscape.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def croptype(lat=None, lon=None, year=None):
# Perform the request. Note, verify set to False until
# server SSL errors can be worked out
try:
req = requests.get(url, params=params, verify=False, timeout=1)
req = requests.get(url, params=params, timeout=1)
except Exception:
return

Expand Down

0 comments on commit f562789

Please sign in to comment.