mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-27 23:35:01 +00:00
Type-annotate the empty evidence payload for strict pyright 🟪
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
0b8eb628a1
commit
8381972286
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue