We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 457ace2 commit aa62b34Copy full SHA for aa62b34
1 file changed
modflow_devtools/models.py
@@ -115,6 +115,7 @@ def __init__(
115
path = [Path(p).expanduser().resolve().absolute() for p in path] # type: ignore
116
missing = [p for p in path if not p.is_dir()] # type: ignore
117
if any(missing):
118
+ missing = [str(p) for p in missing] # type: ignore
119
raise NotADirectoryError(
120
f"Directory paths not found: {', '.join(missing)}" # type: ignore
121
)
0 commit comments