From 98e6c5b0f152ca7e064b3c80be26f50040628388 Mon Sep 17 00:00:00 2001 From: danielelerede-oet Date: Mon, 26 Aug 2024 10:34:21 +0200 Subject: [PATCH] Update scripts/solve_network.py Co-authored-by: Fabian Neumann --- scripts/solve_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/solve_network.py b/scripts/solve_network.py index 9cad6cbde..1edcc9093 100644 --- a/scripts/solve_network.py +++ b/scripts/solve_network.py @@ -1062,7 +1062,7 @@ def extra_functionality(n, snapshots): module_name = os.path.splitext(os.path.basename(source_path))[0] module = importlib.import_module(module_name) custom_extra_functionality = getattr(module, module_name) - custom_extra_functionality(n, snapshots, n.snakemake) + custom_extra_functionality(n, snapshots) def solve_network(n, config, solving, **kwargs):