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
......@@ -2,7 +2,7 @@ from .constants import *
from .detectors import *
# 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 .misc import *
......
from .XAS import *
# 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 *
__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