Skip to content

Commit

Permalink
backcompat fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Oct 15, 2024
1 parent e96edd0 commit 4e4cc4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flopy/mf6/utils/codegen/ref.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ def _subpkg():

def _parent():
line = lines["parent"]
_, param_name, _ = line.split()
return param_name
split = line.split()
return split[1]

return (
cls(**_subpkg(), parent=_parent())
Expand Down

0 comments on commit 4e4cc4e

Please sign in to comment.