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 5db6a81 commit 93ef29dCopy full SHA for 93ef29d
LoopStructural/modelling/__init__.py
@@ -4,12 +4,13 @@
4
"""
5
from LoopStructural.utils import getLogger
6
from LoopStructural.utils import LoopImportError
7
+
8
logger = getLogger(__name__)
9
from LoopStructural.modelling.input.process_data import ProcessInputData
10
11
try:
12
from LoopStructural.modelling.input.project_file import LoopProjectfileProcessor
-except LoopImportError, ImportError:
13
+except (LoopImportError, ImportError):
14
logger.error("Loop project file cannot be imported")
15
from LoopStructural.modelling.features import StructuralFrame
16
from LoopStructural.modelling.features import StructuralFrameBuilder
0 commit comments