roll out save replacement
Some checks failed
Pytest / pytest (3.13) (push) Has been cancelled
Pytest / pytest (3.14) (push) Has been cancelled
Ruff / ruff (push) Waiting to run
Mypy / mypy (push) Successful in 45s
Pytest / pytest (3.12) (push) Has been cancelled

This commit is contained in:
Justus Kuhlmann 2025-12-04 12:29:31 +01:00
commit 2537fea06c
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6
4 changed files with 13 additions and 12 deletions

View file

@ -39,7 +39,7 @@ def init(path: str) -> None:
if tracker == 'datalad':
dl.create(path)
elif tracker == 'None':
os.path.makedirs(path, exist_ok=True)
os.makedirs(path, exist_ok=True)
else:
raise ValueError(f"Tracker {tracker} is not supported.")
return