We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e33c9dc commit eb89b10Copy full SHA for eb89b10
LoopStructural/visualisation/__init__.py
@@ -1 +1,11 @@
1
-from loopstructuralvisualisation import Loop3DView
+try:
2
+ from loopstructuralvisualisation import (
3
+ Loop3DView,
4
+ RotationAnglePlotter,
5
+ Loop2DView,
6
+ StratigraphicColumnView,
7
+ )
8
+except ImportError as e:
9
+ print("Please install the loopstructuralvisualisation package")
10
+ print("pip install loopstructuralvisualisation")
11
+ raise e
0 commit comments