From bbb609d1acb5ae419950518b181d3fee8eab0a08 Mon Sep 17 00:00:00 2001 From: Philipp Glaum Date: Tue, 21 Dec 2021 08:33:06 +0100 Subject: [PATCH] fix Snakefile --- Snakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Snakefile b/Snakefile index eab89679..f62f3f09 100644 --- a/Snakefile +++ b/Snakefile @@ -233,7 +233,7 @@ rule add_electricity: base_network = "networks/base.nc", tech_costs=COSTS, regions="resources/regions_onshore.geojson", - line_rating="resources/line_rating.nc" if config['lines'].get('line_rating', False) else None, + line_rating="resources/line_rating.nc" if config['lines'].get('line_rating', False) else "None", powerplants='resources/powerplants.csv', hydro_capacities='data/bundle/hydro_capacities.csv', geth_hydro_capacities='data/geth2015_hydro_capacities.csv', @@ -410,4 +410,4 @@ rule plot_p_nom_max: input: input_plot_p_nom_max output: "results/plots/elec_s{simpl}_cum_p_nom_max_{clusts}_{techs}_{country}.{ext}" log: "logs/plot_p_nom_max/elec_s{simpl}_{clusts}_{techs}_{country}_{ext}.log" - script: "scripts/plot_p_nom_max.py" \ No newline at end of file + script: "scripts/plot_p_nom_max.py"