From b64623d8d3d8127e186dbe3b9a899e326e1bcb72 Mon Sep 17 00:00:00 2001 From: Emmanuel Bolarinwa Date: Sun, 6 Oct 2024 19:06:40 +0100 Subject: [PATCH] Fix Snakemake Warning (#1126) * remove backslash * removed extra '\' * revert to original implementation --- Snakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Snakefile b/Snakefile index bc6d6c069..218041c67 100644 --- a/Snakefile +++ b/Snakefile @@ -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)