Skip to content
Snippets Groups Projects
Commit 731a23bb authored by Martin Lange's avatar Martin Lange
Browse files

fix circular import

parent 7385b4e9
No related branches found
No related tags found
1 merge request!154Auto-transfer infos
This commit is part of merge request !154. Comments created here will be created in the context of that merge request.
...@@ -36,10 +36,8 @@ Connect helper ...@@ -36,10 +36,8 @@ Connect helper
.. autosummary:: .. autosummary::
:toctree: generated :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 .cwd_helper import execute_in_cwd, set_directory
from .enum_helper import get_enum_value from .enum_helper import get_enum_value
from .log_helper import ( from .log_helper import (
...@@ -50,8 +48,7 @@ from .log_helper import ( ...@@ -50,8 +48,7 @@ from .log_helper import (
is_loggable, is_loggable,
) )
__all__ = ["connect_helper"] __all__ = ["execute_in_cwd", "set_directory"]
__all__ += ["execute_in_cwd", "set_directory"]
__all__ += ["get_enum_value"] __all__ += ["get_enum_value"]
__all__ += [ __all__ += [
"ErrorLogger", "ErrorLogger",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment