Skip to content

Commit 4aa8871

Browse files
committed
Add grid 2D as type option
1 parent 65e0c25 commit 4aa8871

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

simpeg_drivers/options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
ReferencedData,
2828
)
2929
from geoh5py.groups import PropertyGroup, SimPEGGroup, UIJsonGroup
30-
from geoh5py.objects import DrapeModel, Octree, Points
30+
from geoh5py.objects import DrapeModel, Grid2D, Octree, Points
3131
from geoh5py.shared.utils import fetch_active_workspace
3232
from geoh5py.ui_json import InputFile
3333
from pydantic import BaseModel, ConfigDict, field_validator, model_validator
@@ -54,7 +54,7 @@ class ActiveCellsOptions(BaseModel):
5454
model_config = ConfigDict(
5555
arbitrary_types_allowed=True,
5656
)
57-
topography_object: Points | None = None
57+
topography_object: Points | Grid2D | None = None
5858
topography: FloatData | float | None = None
5959
active_model: BooleanData | IntegerData | None = None
6060

0 commit comments

Comments
 (0)