Update power state representation in HassSystemClient to use string literals

This commit is contained in:
Edgar P. Burkhart 2025-03-09 12:34:14 +01:00
parent 2137378f07
commit 9b3df6416e
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -168,7 +168,7 @@ class HassSystemClient(HassClient):
@property
def state_payload(self) -> dict[str, Any]:
return {
"power": self.power_on,
"power": "POWER_ON" if self.power_on else "POWER_OFF",
}