Skip to content

Commit

Permalink
solve_network: fix options assignment in prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianHofmann committed Jul 9, 2024
1 parent 19839d4 commit 83a6fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/solve_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def solve_network(n, config, solving={}, opts="", **kwargs):
n.lines.loc[n.lines.index.str.contains("new"), "s_nom_min"] = (
snakemake.params.augmented_line_connection.get("min_expansion")
)
n = prepare_network(n, solving)
n = prepare_network(n, solving["options"])

n = solve_network(
n,
Expand Down

0 comments on commit 83a6fbe

Please sign in to comment.