Closed kcosta42 closed 2 years ago
The function fetch_file_cached call requests.get before checking if the file was already present, which caused it to raise an exception for offline use.
fetch_file_cached
requests.get
This PR simply moves the check before the call to requests.
requests
The function
fetch_file_cached
callrequests.get
before checking if the file was already present, which caused it to raise an exception for offline use.This PR simply moves the check before the call to
requests
.