Skip to content

Commit

Permalink
Fix path name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
measrainsey committed Oct 22, 2024
1 parent b728bf3 commit 4e78f3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion message_ix_buildings/chilled/core/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def create_climate_variables_maps(config: "Config", start_time: datetime.datetim
project_path = get_paths(config, "project_path")
dle_path = get_paths(config, "dle_path")
isimip_bias_adj_path = get_paths(config, "isimip_bias_adj_path")
isimip_ewembi_path = get_paths(config, "isimip_ewembi_path")

out_path = os.path.join(project_path, "out", "version", config.vstr)
archetype_path = os.path.join(out_path, "rasters")
Expand Down Expand Up @@ -110,7 +111,7 @@ def map_calculated_variables(args):
endstr = ".nc"

if str(clim) == "hist":
isi_folder = isimip_ewemib_path
isi_folder = isimip_ewembi_path
filestr = climate_filestr_hist
else:
isi_folder = isimip_bias_adj_path
Expand Down

0 comments on commit 4e78f3f

Please sign in to comment.