Skip to content

Commit d70b26b

Browse files
committed
Add import in inits
1 parent 155e6f0 commit d70b26b

4 files changed

Lines changed: 10 additions & 1 deletion

File tree

simpeg_drivers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def assets_path() -> Path:
131131
),
132132
"joint surveys": (
133133
"simpeg_drivers.joint.joint_surveys",
134-
{"inversion": "JointSurveyDriver"},
134+
{"inversion": "JointSurveysDriver"},
135135
),
136136
"magnetic scalar": (
137137
"simpeg_drivers.potential_fields.magnetic_scalar",

simpeg_drivers/joint/joint_cross_gradient/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
# (see LICENSE file at the root of this source code package). '
88
# '
99
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
10+
11+
from .driver import JointCrossGradientDriver
12+
from .options import JointCrossGradientOptions

simpeg_drivers/joint/joint_petrophysics/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
# (see LICENSE file at the root of this source code package). '
88
# '
99
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
10+
11+
from .driver import JointPetrophysicsDriver
12+
from .options import JointPetrophysicsOptions

simpeg_drivers/joint/joint_surveys/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
# (see LICENSE file at the root of this source code package). '
88
# '
99
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
10+
11+
from .driver import JointSurveysDriver
12+
from .options import JointSurveysOptions

0 commit comments

Comments
 (0)