Skip to content

Commit

Permalink
fix: import (#2402)
Browse files Browse the repository at this point in the history
### Description

Fix broken/missing imports

### QC
<!-- Make sure that you can tick the boxes below. -->

* [x] The PR contains a test case for the changes or the changes are
already covered by an existing test case.
* [x] The documentation (`docs/`) is updated to reflect the changes or
this is not necessary (e.g. if the change does neither modify the
language nor the behavior or functionalities of Snakemake).
  • Loading branch information
jakevc committed Aug 8, 2023
1 parent e867dda commit 2c831f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion snakemake/executors/azure_batch.py
Expand Up @@ -18,7 +18,9 @@
from typing import Optional
from urllib.parse import urlparse

from snakemake_interface_executor_plugins.executors import RemoteExecutor
from snakemake_interface_executor_plugins.executors.remote import RemoteExecutor
from snakemake_interface_executor_plugins.persistence import StatsExecutorInterface
from snakemake_interface_executor_plugins.logging import LoggerExecutorInterface
from snakemake_interface_executor_plugins.dag import DAGExecutorInterface
from snakemake_interface_executor_plugins.jobs import ExecutorJobInterface
from snakemake_interface_executor_plugins.workflow import WorkflowExecutorInterface
Expand Down

0 comments on commit 2c831f1

Please sign in to comment.