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
......@@ -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",
......
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