Skip to content

Commit

Permalink
prepare_network: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fneum committed May 12, 2023
1 parent 3343394 commit e88b57f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/prepare_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,10 +345,10 @@ def set_line_nom_max(

set_line_nom_max(
n,
s_nom_max_set=snakemake.config["lines"]["s_nom_max,"],
p_nom_max_set=snakemake.config["links"]["p_nom_max,"],
s_nom_max_ext=snakemake.config["lines"]["max_extension,"],
p_nom_max_ext=snakemake.config["links"]["max_extension,"],
s_nom_max_set=snakemake.config["lines"]["s_nom_max"],
p_nom_max_set=snakemake.config["links"]["p_nom_max"],
s_nom_max_ext=snakemake.config["lines"]["max_extension"],
p_nom_max_ext=snakemake.config["links"]["max_extension"],
)

if "ATK" in opts:
Expand Down

0 comments on commit e88b57f

Please sign in to comment.