Skip to content

Commit

Permalink
fix: 🚑 quick fix for projectfile import error
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachlan Grose committed Apr 26, 2022
1 parent 7d618fe commit 34fb1d6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion LoopStructural/modelling/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
Geological modelling classes and functions
"""
from LoopStructural.utils import getLogger

logger = getLogger(__name__)
from LoopStructural.modelling.input.process_data import ProcessInputData
from LoopStructural.modelling.input.project_file import LoopProjectfileProcessor

try:
from LoopStructural.modelling.input.project_file import LoopProjectfileProcessor
except ImportError:
logger.error("Loop project file cannot be imported")
from LoopStructural.modelling.features import StructuralFrame
from LoopStructural.modelling.features import StructuralFrameBuilder
from LoopStructural.modelling.fault import FaultBuilder
Expand Down

0 comments on commit 34fb1d6

Please sign in to comment.