We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 348d094 commit 2a154d6Copy full SHA for 2a154d6
1 file changed
geoapps_utils/modelling/plates.py
@@ -106,7 +106,11 @@ def __init__(self, params: PlateModel):
106
107
@classmethod
108
def from_maxwell_plate(cls, plate: MaxwellPlate) -> Self:
109
- """Construct a Plate from geoh5py MaxwellPlate object."""
+ """
110
+ Construct a Plate from geoh5py MaxwellPlate object.
111
+
112
+ :param plate: Maxwell plate object to construct the Plate from.
113
114
if plate.geometry is None:
115
raise ValueError("Maxwell plate must have its geometry set.")
116
return cls(PlateModel.from_maxwell_plate_geometry(plate.geometry))
0 commit comments