Skip to content
Snippets Groups Projects
Commit 67b84d7f authored by Cammille Carinan's avatar Cammille Carinan
Browse files

Use absolute import on module alias

parent 9a8291a1
No related branches found
No related tags found
2 merge requests!110WIP: Add docs on how to use ToolBox with Jupyter notebooks on Maxwell,!106Refactor packaging
This commit is part of merge request !107. Comments created here will be created in the context of that merge request.
...@@ -2,7 +2,7 @@ from .constants import * ...@@ -2,7 +2,7 @@ from .constants import *
from .detectors import * from .detectors import *
# Module name is the same as a child function, we use alias to avoid conflict # Module name is the same as a child function, we use alias to avoid conflict
import load as load_module import toolbox_scs.load as load_module
from .load import * from .load import *
from .misc import * from .misc import *
......
from .XAS import * from .XAS import *
# Module name is the same as a child function, we use alias to avoid conflict # Module name is the same as a child function, we use alias to avoid conflict
import knife_edge as knife_edge_module import toolbox_scs.routines.knife_edge as knife_edge_module
from .knife_edge import * from .knife_edge import *
__all__ = ( __all__ = (
knife_edge_module.__all__ knife_edge_module.__all__
* XAS.__all__ + XAS.__all__
) )
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