better type annotation fir id lookup
Some checks failed
Mypy / mypy (push) Successful in 1m11s
Pytest / pytest (3.14) (push) Successful in 1m18s
Pytest / pytest (3.12) (push) Successful in 1m19s
Pytest / pytest (3.13) (push) Successful in 1m15s
Ruff / ruff (push) Failing after 1m1s

This commit is contained in:
Justus Kuhlmann 2026-03-24 18:39:00 +01:00
commit 4516ca3149
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -40,7 +40,7 @@ def _project_lookup_by_alias(db: Path, alias: str) -> str:
return str(results[0][0]) return str(results[0][0])
def _project_lookup_by_id(db: Path, uuid: str) -> list[tuple[str, str]]: def _project_lookup_by_id(db: Path, uuid: str) -> list[tuple[str, ...]]:
""" """
Return the project information available in the database by UUID. Return the project information available in the database by UUID.