Skip to content
Snippets Groups Projects
Commit ddefb975 authored by Lene Wasskog's avatar Lene Wasskog
Browse files

fix: Typo

parent 6f0ba84a
No related branches found
No related tags found
No related merge requests found
...@@ -84,15 +84,15 @@ else: ...@@ -84,15 +84,15 @@ else:
year = today.year year = today.year
weather_data_path = infile_path weather_data_path = infile_path
if year != today.year: if year < today.year:
weather_data_path = f"{infile_archive_path}{year}/" weather_data_path = f"{infile_archive_path}{year}/"
# Path to store intermediary calculations # Path to store intermediary calculations
tmpfile_path = f"tmp/{year}/" tmpfile_path = f"tmp/{year}/"
# Paths to store generated result files # Paths to store generated result files
outfile_path = f"os.getenv('DATA_DIR'){year}/" outfile_path = f"{os.getenv('DATA_DIR')}{year}/"
mapfile_outdir = f"os.getenv('MAPFILE_DIR'){year}/" mapfile_outdir = f"{os.getenv('MAPFILE_DIR')}{year}/"
TEMPERATURE_THRESHOLD = 8.0 TEMPERATURE_THRESHOLD = 8.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment