From 685285fbb49b9850816e6d03c0b5520ee1615b12 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Mon, 3 Feb 2025 21:29:10 -0500 Subject: [PATCH] fix(dfn): rename transient -> transient_block --- modflow_devtools/dfn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modflow_devtools/dfn.py b/modflow_devtools/dfn.py index adf8d72..fd414b3 100644 --- a/modflow_devtools/dfn.py +++ b/modflow_devtools/dfn.py @@ -434,7 +434,7 @@ def _fields() -> Vars: transient_index_vars = flat.getlist("iper") for transient_index in transient_index_vars: transient_block = transient_index["block"] - blocks[transient_block]["transient"] = True + blocks[transient_block]["transient_block"] = True # remove unneeded variable attributes def remove_attrs(path, key, value):