Refactor power notification handling to use a dedicated method for improved readability and maintainability

This commit is contained in:
Edgar P. Burkhart 2025-03-09 23:26:40 +01:00
parent d48cc1b785
commit 58b864a2eb
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -153,12 +153,15 @@ class HassSystemClient(HassClient):
match cmd:
case "POWER_OFF":
self.publish(
f"{self.node_id}/user/notify",
"System will be shutting down in 1 minute.",
)
self.publish_notify("System will be shutting down in 1 minute.")
case "POWER_ON":
self.publish(f"{self.node_id}/user/notify", "Shutdown cancelled.")
self.publish_notify("Shutdown cancelled.")
def publish_notify(
self, payload: str, *args: Any, **kwargs: Any
) -> MQTTMessageInfo:
kwargs.setdefault("retain", False)
return self.publish(f"{self.node_id}/user/notify", payload, *args, **kwargs)
@property
def state_topic(self) -> str: