Skip to content

Commit 2f74375

Browse files
authored
Merge pull request #192 from MiraGeoscience/GEOPY-2133
GEOPY-2133: Allow IntegerData for active cell value model type
2 parents 8f235ab + 9a4c21f commit 2f74375

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

simpeg_drivers/options.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
BooleanData,
2323
DataAssociationEnum,
2424
FloatData,
25+
IntegerData,
2526
NumericData,
2627
ReferencedData,
2728
)
@@ -55,7 +56,7 @@ class ActiveCellsOptions(BaseModel):
5556
)
5657
topography_object: Points | None = None
5758
topography: FloatData | float | None = None
58-
active_model: BooleanData | None = None
59+
active_model: BooleanData | IntegerData | None = None
5960

6061
@model_validator(mode="before")
6162
@classmethod

0 commit comments

Comments
 (0)