fix(types): add type params to broadcast_service_status services arg

ha-relevant: yes
This commit is contained in:
Pouzor
2026-06-10 02:44:06 +02:00
parent bcc488993d
commit d032103b7d
+1 -1
View File
@@ -54,7 +54,7 @@ async def broadcast_status(node_id: str, status: str, checked_at: str, response_
}))
async def broadcast_service_status(node_id: str, services: list[dict], checked_at: str) -> None:
async def broadcast_service_status(node_id: str, services: list[dict[str, object]], checked_at: str) -> None:
await _broadcast(json.dumps({
"type": "service_status",
"node_id": node_id,