From 558f4a8c9d17241e21e7d41c3a75a9a6380a9fb1 Mon Sep 17 00:00:00 2001 From: mjreno Date: Wed, 16 Oct 2024 14:04:19 -0400 Subject: [PATCH] fix(utils): exclude ncf from mf6 output utils (#2336) --- flopy/mf6/utils/output_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flopy/mf6/utils/output_util.py b/flopy/mf6/utils/output_util.py index 3e1ef59b9..6d1e72097 100644 --- a/flopy/mf6/utils/output_util.py +++ b/flopy/mf6/utils/output_util.py @@ -35,7 +35,7 @@ def __init__(self, obj, budgetkey=None): "csv": self.__csv, "package_convergence": self.__csv, } - delist = ("ts", "wc") + delist = ("ts", "wc", "ncf") self._obj = obj self._methods = [] self._sim_ws = obj.simulation_data.mfpath.get_sim_path()