From 731a23bb5a98f3bc8d59550510b3ce141613c766 Mon Sep 17 00:00:00 2001 From: Martin Lange <martin.lange@ufz.de> Date: Sat, 29 Oct 2022 18:40:37 +0200 Subject: [PATCH] fix circular import --- src/finam/tools/__init__.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/finam/tools/__init__.py b/src/finam/tools/__init__.py index 523445c6..5e7e9755 100644 --- a/src/finam/tools/__init__.py +++ b/src/finam/tools/__init__.py @@ -36,10 +36,8 @@ Connect helper .. autosummary:: :toctree: generated - ConnectHelper + connect_helper.ConnectHelper """ -from . import connect_helper -from .connect_helper import ConnectHelper from .cwd_helper import execute_in_cwd, set_directory from .enum_helper import get_enum_value from .log_helper import ( @@ -50,8 +48,7 @@ from .log_helper import ( is_loggable, ) -__all__ = ["connect_helper"] -__all__ += ["execute_in_cwd", "set_directory"] +__all__ = ["execute_in_cwd", "set_directory"] __all__ += ["get_enum_value"] __all__ += [ "ErrorLogger", -- GitLab