Skip to content

Commit

Permalink
fix: JobExecutorInterface (#15)
Browse files Browse the repository at this point in the history
Fix Import
  • Loading branch information
jakevc authored Dec 12, 2023
1 parent 321998e commit 8cb86f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions poetry_snakemake_plugin/templates/executor-plugins/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
CommonSettings,
)
from snakemake_interface_executor_plugins.jobs import (
ExecutorJobInterface,
JobExecutorInterface,
)
from snakemake_interface_common.exceptions import WorkflowError # noqa

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 8cb86f3

Please sign in to comment.