fix add_electricity mistake

This commit is contained in:
virio-andreyana 2023-05-11 20:59:37 +02:00 committed by GitHub
parent 1758076815
commit aa50ea44cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -274,13 +274,13 @@ rule add_electricity:
output:
RESOURCES + "networks/elec.nc",
params:
costs=snakemake.config["costs"]
electricity=snakemake.config["electricity"]
renewable=snakemake.config["renewable"]
conventional=snakemake.config.get("conventional", {})
countries=snakemake.config["countries"]
scaling_factor=snakemake.config["load"]["scaling_factor"]
length_factor=snakemake.config["lines"]["length_factor"]
costs=snakemake.config["costs"],
electricity=snakemake.config["electricity"],
renewable=snakemake.config["renewable"],
conventional=snakemake.config.get("conventional", {}),
countries=snakemake.config["countries"],
scaling_factor=snakemake.config["load"]["scaling_factor"],
length_factor=snakemake.config["lines"]["length_factor"],
log:
LOGS + "add_electricity.log",
benchmark: