fix(test): annotate _choreographer helper return type (CI mypy checks tests/)

This commit is contained in:
Renn F
2026-07-14 08:56:55 +02:00
committed by Renzo F
parent 05a83f45cb
commit 5a34db2528
@@ -69,7 +69,9 @@ def _patch_repo(monkeypatch: pytest.MonkeyPatch, row: Any | None) -> MagicMock:
return repo_mock return repo_mock
def _choreographer(monkeypatch: pytest.MonkeyPatch, row: Any | None): def _choreographer(
monkeypatch: pytest.MonkeyPatch, row: Any | None
) -> tuple[Choreographer, MagicMock]:
deps = _make_deps() deps = _make_deps()
deps.task.session = MagicMock() deps.task.session = MagicMock()
c = Choreographer(deps) c = Choreographer(deps)