From d032103b7d0f89c3085164a2b4b1f45dee6d22b7 Mon Sep 17 00:00:00 2001 From: Pouzor Date: Wed, 10 Jun 2026 02:44:06 +0200 Subject: [PATCH] fix(types): add type params to broadcast_service_status services arg ha-relevant: yes --- backend/app/api/routes/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/api/routes/status.py b/backend/app/api/routes/status.py index ec544e2..b119cdc 100644 --- a/backend/app/api/routes/status.py +++ b/backend/app/api/routes/status.py @@ -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,