expose tracker option in cli
Some checks failed
Ruff / ruff (push) Waiting to run
Mypy / mypy (push) Failing after 48s
Pytest / pytest (3.12) (push) Has been cancelled
Pytest / pytest (3.13) (push) Has been cancelled
Pytest / pytest (3.14) (push) Has been cancelled

This commit is contained in:
Justus Kuhlmann 2025-12-04 12:39:30 +01:00
commit c1aef6cdf2
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -152,12 +152,17 @@ def init(
str('./corrlib'),
"--dataset",
"-d",
),
) -> None:
),
tracker: str = typer.Option(
str('datalad'),
"--tracker",
"-t",
),
) -> None:
"""
Initialize a new backlog-database.
"""
create(path)
create(path, tracker)
return
@ -167,8 +172,8 @@ def drop_cache(
str('./corrlib'),
"--dataset",
"-d",
),
) -> None:
),
) -> None:
"""
Drop the currect cache directory of the dataset.
"""