We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c73d3e7 commit ee01ed5Copy full SHA for ee01ed5
2 files changed
modflow_devtools/dfn/schema.py
@@ -754,7 +754,10 @@ def get_fields(dfn: Dfn) -> OMD:
754
755
def _has_grid_dependent_shapes(dfn: Dfn) -> bool:
756
"""Return True if any field uses a semicolon grid-type-dependent shape."""
757
- for block in dfn.get("blocks", {}).values():
+ blocks = dfn.get("blocks", {})
758
+ if not blocks:
759
+ return False
760
+ for block in blocks.values():
761
for field in block.values():
762
if ";" in str(field.get("shape") or ""):
763
return True
modflow_devtools/dfns/dfns.toml
@@ -4,6 +4,6 @@
4
# - Windows: %APPDATA%/modflow-devtools/dfns.toml
5
6
releases = [
7
- "MODFLOW-ORG/modflow6@latest",
+ # "MODFLOW-ORG/modflow6@latest",
8
"MODFLOW-ORG/modflow6-nightly-build@latest"
9
]
0 commit comments