From 6864f4398698b4e9e83315b913af0c3d8db59d56 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Tue, 6 Sep 2022 20:19:33 +0200 Subject: [PATCH] Drop unused property from zha (#77897) --- homeassistant/components/zha/entity.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/homeassistant/components/zha/entity.py b/homeassistant/components/zha/entity.py index 61dbe5339d0..ae4bc7e5ea4 100644 --- a/homeassistant/components/zha/entity.py +++ b/homeassistant/components/zha/entity.py @@ -54,7 +54,6 @@ class BaseZhaEntity(LogMixin, entity.Entity): def __init__(self, unique_id: str, zha_device: ZHADevice, **kwargs: Any) -> None: """Init ZHA entity.""" self._name: str = "" - self._force_update: bool = False self._unique_id: str = unique_id if self.unique_id_suffix: self._unique_id += f"-{self.unique_id_suffix}" @@ -84,11 +83,6 @@ class BaseZhaEntity(LogMixin, entity.Entity): """Return device specific state attributes.""" return self._extra_state_attributes - @property - def force_update(self) -> bool: - """Force update this entity.""" - return self._force_update - @property def device_info(self) -> entity.DeviceInfo: """Return a device description for device registry."""