Skip to content

Commit

Permalink
fix(dfn): keep block attribute for now (#182)
Browse files Browse the repository at this point in the history
Flopy expects this for mfstructure.py introspection. Keep it for now and drop it once flopy no longer needs it.
  • Loading branch information
wpbonelli authored Feb 3, 2025
1 parent b15a699 commit c36f502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modflow_devtools/dfn.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def _fields() -> Vars:

# remove unneeded variable attributes
def remove_attrs(path, key, value):
if key in ["block", "in_record", "tagged", "preserve_case"]:
if key in ["in_record", "tagged", "preserve_case"]:
return False
return True

Expand Down

0 comments on commit c36f502

Please sign in to comment.