Skip to content

Commit

Permalink
remove exception handling in helper functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mathleur committed Oct 10, 2023
1 parent 8acc6db commit 040f3df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions tests/data/era5-levels-members.grib

This file was deleted.

2 changes: 1 addition & 1 deletion tests/helper_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def download_test_data(nexus_url, filename):
if not os.path.exists(local_file_path):
session = requests.Session()
response = session.get(nexus_url)
response.raise_for_status()
# response.raise_for_status()
# Save the downloaded data to the local file
with open(local_file_path, "wb") as f:
f.write(response.content)

0 comments on commit 040f3df

Please sign in to comment.