We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2a21de commit 2c7d5e1Copy full SHA for 2c7d5e1
1 file changed
simpeg_drivers/joint/joint_surveys/options.py
@@ -49,19 +49,6 @@ class JointSurveysOptions(BaseJointOptions):
49
50
models: JointSurveysModelOptions
51
52
- @field_validator("group_a", "group_b", "group_c")
53
- @classmethod
54
- def no_mvi_groups(cls, val):
55
- if val is None:
56
- return val
57
-
58
- if "magnetic vector" in val.options.get("inversion_type", ""):
59
- raise ValueError(
60
- f"Joint inversion doesn't currently support MVI data as passed in "
61
- f"the group: {val.name}."
62
- )
63
64
65
@model_validator(mode="after")
66
def all_groups_same_physical_property(self):
67
physical_properties = [k.options["physical_property"] for k in self.groups]
0 commit comments