From 2c831f1fa98813cf5f69ecb046aad1364f514238 Mon Sep 17 00:00:00 2001 From: Jake VanCampen Date: Tue, 8 Aug 2023 04:40:46 -0700 Subject: [PATCH] fix: import (#2402) ### Description Fix broken/missing imports ### QC * [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). --- snakemake/executors/azure_batch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/snakemake/executors/azure_batch.py b/snakemake/executors/azure_batch.py index cc2077fd0..ec89390f7 100644 --- a/snakemake/executors/azure_batch.py +++ b/snakemake/executors/azure_batch.py @@ -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