File tree Expand file tree Collapse file tree 3 files changed +762
-23
lines changed Expand file tree Collapse file tree 3 files changed +762
-23
lines changed Original file line number Diff line number Diff line change 1212import numpy as np
1313from attrs import NOTHING , Attribute
1414from modflow_devtools .dfn .schema .block import block_sort_key
15- from modflow_devtools .dfn .schema .v2 import SCALAR_T7PES , FieldType
15+ from modflow_devtools .dfn .schema .v2 import SCALAR_TYPES , FieldType
1616from modflow_devtools .dfn .schema .v2 import Field as FieldV2
1717
1818from flopy4 .spec import array as flopy_array
@@ -278,7 +278,7 @@ def to_field(attribute: Attribute) -> FieldV2:
278278
279279def is_array_field (field : FieldV2 ) -> bool :
280280 """Check if a field should be provided in MF6 array input format."""
281- return field ["type" ] in SCALAR_T7PES and "shape" in field
281+ return field ["type" ] in SCALAR_TYPES and "shape" in field
282282
283283
284284def is_list_field (field : FieldV2 ) -> bool :
You can’t perform that action at this time.
0 commit comments