Skip to content

Commit

Permalink
update notebook example to skip None packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jlarsen-usgs committed Oct 31, 2023
1 parent c31903a commit 34244ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .docs/Notebooks/mf6_parallel_model_splitting_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
pak = model.get_package(pkg)
try:
rarrays[ix + 1] = pak.stress_period_data.data[0]
except TypeError:
except (TypeError, AttributeError):
pass
recarray = mfsplit.reconstruct_recarray(rarrays)
if pkg == "riv":
Expand Down

0 comments on commit 34244ad

Please sign in to comment.