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 016c43e commit a563977Copy full SHA for a563977
1 file changed
modflow_devtools/dfn.py
@@ -648,11 +648,19 @@ def _rest():
648
return Ref(parent=parent, **rest)
649
return None
650
651
+ sln = _sln()
652
+ multi = (
653
+ _multi()
654
+ or sln is not None
655
+ or ("nam" in name and "sim" not in name)
656
+ or name.startswith("exg-")
657
+ )
658
+
659
return cls(
660
name=name,
661
advanced=_advanced(),
- multi=_multi(),
- sln=_sln(),
662
+ multi=multi,
663
+ sln=sln,
664
ref=_sub(),
665
**blocks,
666
)
0 commit comments