diff --git a/snakemake_executor_plugin_cluster_sync/__init__.py b/snakemake_executor_plugin_cluster_sync/__init__.py index ae889d2..321dd82 100644 --- a/snakemake_executor_plugin_cluster_sync/__init__.py +++ b/snakemake_executor_plugin_cluster_sync/__init__.py @@ -8,8 +8,6 @@ from snakemake_interface_executor_plugins.executors.base import SubmittedJobInfo from snakemake_interface_executor_plugins.executors.remote import RemoteExecutor from snakemake_interface_executor_plugins import ExecutorSettingsBase, CommonSettings -from snakemake_interface_executor_plugins.workflow import WorkflowExecutorInterface -from snakemake_interface_executor_plugins.logging import LoggerExecutorInterface from snakemake_interface_executor_plugins.jobs import ( JobExecutorInterface, ) @@ -54,7 +52,6 @@ class ExecutorSettings(ExecutorSettingsBase): # Required: # Implementation of your executor class Executor(RemoteExecutor): - def run_job(self, job: JobExecutorInterface): # Implement here how to run a job. # You can access the job's resources, etc.