Skip to content

Commit

Permalink
change ~ to not
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Oct 14, 2024
1 parent da11a31 commit 109b729
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pvnet_app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,10 @@ def app(

# Download NWP data
logger.info("Downloading NWP data")
download_all_nwp_data(download_ukv=~use_ecmwf_only)
download_all_nwp_data(download_ukv=not use_ecmwf_only)

# Preprocess the NWP data
preprocess_nwp_data(use_ukv=~use_ecmwf_only)
preprocess_nwp_data(use_ukv=not use_ecmwf_only)

# ---------------------------------------------------------------------------
# 2. Set up models
Expand Down

0 comments on commit 109b729

Please sign in to comment.