Skip to content

Commit

Permalink
Fix Snakemake Warning (#1126)
Browse files Browse the repository at this point in the history
* remove backslash

* removed extra '\'

* revert to original implementation
  • Loading branch information
GbotemiB authored Oct 6, 2024
1 parent 356fb71 commit b64623d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ config["scenario"]["unc"] = [
run = config.get("run", {})
RDIR = run["name"] + "/" if run.get("name") else ""
CDIR = RDIR if not run.get("shared_cutouts") else ""
SDIR = config["summary_dir"].strip("/") + f"/{RDIR}/"
RESDIR = config["results_dir"].strip("/") + f"/{RDIR}/"
SDIR = config["summary_dir"].strip("/") + f"/{RDIR}"
RESDIR = config["results_dir"].strip("/") + f"/{RDIR}"
COSTDIR = config["costs_dir"]

load_data_paths = get_load_paths_gegis("data", config)
Expand Down

0 comments on commit b64623d

Please sign in to comment.