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 140e952 commit 066270cCopy full SHA for 066270c
1 file changed
flopy/mf6/utils/generate_classes.py
@@ -89,7 +89,8 @@ def generate_classes(
89
print()
90
91
tomlpath = dfnpath / "toml"
92
- tomlpath.mkdir(exist_ok=True)
+ shutil.rmtree(tomlpath, ignore_errors=True)
93
+ tomlpath.mkdir()
94
dfn2toml(dfnpath, tomlpath)
95
96
shutil.rmtree(_MF6_AUTOGEN_PATH)
0 commit comments