Skip to content

Commit 0267be0

Browse files
mjrenomjreno
authored andcommitted
fix structure attribute
1 parent 2747223 commit 0267be0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flopy/mf6/data/mfdatastorage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2373,11 +2373,11 @@ def _build_full_data(self, apply_multiplier=False):
23732373
full_data = np.full(dimensions, fill_value, np_full_data_type)
23742374
layer_aux = (
23752375
self.data_dimensions.structure.name == "aux"
2376-
and not self.layered
2376+
and not self.data_dimensions.structure.layered
23772377
)
23782378
grid_aux = (
23792379
self.data_dimensions.structure.name == "aux"
2380-
and self.layered
2380+
and self.data_dimensions.structure.layered
23812381
)
23822382
if layer_aux:
23832383
aux_data = []

0 commit comments

Comments
 (0)