integ/links #34

Merged
jkuhl merged 6 commits from integ/links into develop 2026-04-17 18:09:18 +02:00
Showing only changes of commit 37ae818589 - Show all commits

small logic issue
Some checks failed
Ruff / ruff (push) Waiting to run
Mypy / mypy (pull_request) Waiting to run
Pytest / pytest (3.12) (pull_request) Waiting to run
Pytest / pytest (3.13) (pull_request) Waiting to run
Ruff / ruff (pull_request) Waiting to run
Mypy / mypy (push) Failing after 1m14s
Pytest / pytest (3.14) (pull_request) Waiting to run
Pytest / pytest (3.12) (push) Successful in 1m19s
Pytest / pytest (3.13) (push) Successful in 1m12s
Pytest / pytest (3.14) (push) Has been cancelled

Justus Kuhlmann 2026-04-17 17:37:46 +02:00
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -61,7 +61,7 @@ def _check_db2paths(path: Path, meas_paths: list[str]) -> None:
for key in filedict.keys():
if key not in needed_data[file]:
raise ValueError(f"Found unintended key {key} in file {file}.")
elif not set(needed_data[file]).issubset(filedict.keys()):
if not set(needed_data[file]).issubset(filedict.keys()):
for key in needed_data[file]:
if key not in filedict.keys():
raise ValueError(f"Did not find data for key {key} that should be in file {file}.")