From 8cb86f39bd0a47fa8559dd9cfbff211ca6b3530d Mon Sep 17 00:00:00 2001 From: Jake VanCampen Date: Tue, 12 Dec 2023 07:54:22 -0800 Subject: [PATCH] fix: JobExecutorInterface (#15) Fix Import --- poetry_snakemake_plugin/templates/executor-plugins/init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/poetry_snakemake_plugin/templates/executor-plugins/init.py b/poetry_snakemake_plugin/templates/executor-plugins/init.py index f0fadba..18e286d 100644 --- a/poetry_snakemake_plugin/templates/executor-plugins/init.py +++ b/poetry_snakemake_plugin/templates/executor-plugins/init.py @@ -7,7 +7,7 @@ CommonSettings, ) from snakemake_interface_executor_plugins.jobs import ( - ExecutorJobInterface, + JobExecutorInterface, ) from snakemake_interface_common.exceptions import WorkflowError # noqa @@ -98,7 +98,7 @@ def __post_init__(self): # In case of errors outside of jobs, please raise a WorkflowError - def run_job(self, job: ExecutorJobInterface): + def run_job(self, job: JobExecutorInterface): # Implement here how to run a job. # You can access the job's resources, etc. # via the job object.