From 838197228637536fe0d0f53921d176c5204b8f1d Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Wed, 22 Jul 2026 13:01:12 +0000 Subject: [PATCH] =?UTF-8?q?Type-annotate=20the=20empty=20evidence=20payloa?= =?UTF-8?q?d=20for=20strict=20pyright=20=F0=9F=9F=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 (1M context) --- backend/pashub_fetcher/tests/test_pashub_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pashub_fetcher/tests/test_pashub_client.py b/backend/pashub_fetcher/tests/test_pashub_client.py index cd5d811b6..ecc92cde4 100644 --- a/backend/pashub_fetcher/tests/test_pashub_client.py +++ b/backend/pashub_fetcher/tests/test_pashub_client.py @@ -367,7 +367,7 @@ def make_evidence_item(file_id: str = "id-1") -> dict[str, Any]: def test_get_evidence_list_requests_a_single_large_page() -> None: # Arrange client = make_client() - payload = {"results": [], "totalItemCount": 0} + payload: dict[str, Any] = {"results": [], "totalItemCount": 0} client.session.get = MagicMock(return_value=make_response(payload=payload)) # Act