MP7.py:
Line 331: return np.array(laytyp, dtype=np.int32)
Issue:
The laytyp returns NoneType since the laytyp is assigned to the package object and not the base modflow object.
e.g. "upw.laytyp" returns a Util2D array, but mf.laytyp returns None (here upw is the name of a ModflowUPW object and mf is a Modflow object)
MP7.py:
Line 331: return np.array(laytyp, dtype=np.int32)
Issue:
The laytyp returns NoneType since the laytyp is assigned to the package object and not the base modflow object.
e.g. "upw.laytyp" returns a Util2D array, but mf.laytyp returns None (here upw is the name of a ModflowUPW object and mf is a Modflow object)