Skip to content

Commit

Permalink
actions working, re-enabling downloading
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlend committed Jul 18, 2024
1 parent 396c2f9 commit 8d049bc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/neospy/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ def cached_file_download(url, force_download=False, subfolder=""):
filename = os.path.join(cache_path(subfolder), parsed.path.split("/")[-1])
# check if already downloaded
if not os.path.isfile(filename) or force_download:
raise ValueError("missing file ", filename)
with requests.Session() as session:
retry = Retry(connect=3, backoff_factor=0.5)
adapter = requests.adapters.HTTPAdapter(max_retries=retry)
Expand Down

0 comments on commit 8d049bc

Please sign in to comment.