feat/minteg #39

Merged
jkuhl merged 6 commits from feat/minteg into develop 2026-05-06 09:37:36 +02:00
Showing only changes of commit a2a3346f51 - Show all commits

provide docstring for repo check
Some checks failed
Mypy / mypy (push) Successful in 13m2s
Pytest / pytest (3.12) (push) Successful in 2m54s
Pytest / pytest (3.13) (push) Successful in 15m38s
Pytest / pytest (3.14) (push) Successful in 1m12s
Ruff / ruff (push) Successful in 4m38s
Ruff / ruff (pull_request) Failing after 39s
Mypy / mypy (pull_request) Failing after 39s
Pytest / pytest (3.12) (pull_request) Waiting to run
Pytest / pytest (3.13) (pull_request) Waiting to run
Pytest / pytest (3.14) (pull_request) Waiting to run

Justus Kuhlmann 2026-05-05 22:12:14 +02:00
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -108,7 +108,7 @@ def find(
),
) -> None:
"""
Find a record in the backlog at hand. Through specifying it's ensemble and the measured correlator.
Find a record in the given backlog.
"""
results = find_record(path, ensemble, corr, code)
if results.empty:
@ -147,6 +147,9 @@ def check(path: Path = typer.Option(
"-d",
),
) -> None:
"""
Check the integrity of the repository.
"""
full_integrity_check(path)