From 4e05cf13ae94858fd48d2b5bad454f2ab053d6ed Mon Sep 17 00:00:00 2001 From: Johannes Koester Date: Wed, 3 Sep 2025 15:29:55 +0200 Subject: [PATCH] feat: adapt to changes in accessing executor settings in executor plugins --- snakedeploy/templates/plugins/executor-plugins/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snakedeploy/templates/plugins/executor-plugins/init.py b/snakedeploy/templates/plugins/executor-plugins/init.py index d883f69..f04167f 100644 --- a/snakedeploy/templates/plugins/executor-plugins/init.py +++ b/snakedeploy/templates/plugins/executor-plugins/init.py @@ -85,7 +85,7 @@ def __post_init__(self): # access workflow self.workflow # access executor specific settings - self.workflow.executor_settings + self.executor_settings # IMPORTANT: in your plugin, only access methods and properties of # Snakemake objects (like Workflow, Persistence, etc.) that are