We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0206b5 commit 6060f9bCopy full SHA for 6060f9b
flopy4/mf6/gwf/dis.py
@@ -1,3 +1,4 @@
1
+from typing import Optional
2
import numpy as np
3
from attrs import Converter
4
from flopy.discretization.structuredgrid import StructuredGrid
@@ -65,7 +66,7 @@ class Dis(Package):
65
66
dims=("nlay", "nrow", "ncol"),
67
converter=Converter(dict_to_array, takes_self=True, takes_field=True),
68
)
- idomain: NDArray[np.int32] = array(
69
+ idomain: Optional[NDArray[np.int32]] = array(
70
block="griddata",
71
default=1,
72
0 commit comments