Skip to content

Commit 01d4b04

Browse files
committed
devtools sorts blocks so no need to move options to top
1 parent 3c21698 commit 01d4b04

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

flopy4/mf6/converter.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,6 @@ def unstructure_component(value: Component) -> dict[str, Any]:
187187
dataset = xr.Dataset(block)
188188
blocks[f"{block_name} {kper + 1}"] = {block_name: dataset}
189189

190-
# make sure options block always comes first
191-
if "options" in blocks:
192-
options_block = blocks.pop("options")
193-
blocks = {"options": options_block, **blocks}
194-
195190
# total temporary hack! manually set solutiongroup 1. still need to support multiple..
196191
if "solutiongroup" in blocks:
197192
sg = blocks["solutiongroup"]

0 commit comments

Comments
 (0)