From aec996be84c00012c57b2f7f13daf6df85cd975e Mon Sep 17 00:00:00 2001 From: Lene Wasskog <lene.wasskog@nibio.no> Date: Wed, 7 May 2025 08:32:02 +0200 Subject: [PATCH] chore: Remove redundant '/' from path --- ADASMELIAE.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ADASMELIAE.py b/ADASMELIAE.py index 67bfed5..f7f95b1 100755 --- a/ADASMELIAE.py +++ b/ADASMELIAE.py @@ -181,7 +181,7 @@ def create_mapfile(timestep_dates): "language_codes": language_codes, } ) - with open(f"{result_mapfile_year_dir}/{model_id}.map", "w") as f: + with open(f"{result_mapfile_year_dir}{model_id}.map", "w") as f: f.write(output) -- GitLab