diff --git a/homeassistant/components/switchbee/switch.py b/homeassistant/components/switchbee/switch.py index 04320dcf4cc..298c30fa7b8 100644 --- a/homeassistant/components/switchbee/switch.py +++ b/homeassistant/components/switchbee/switch.py @@ -76,7 +76,7 @@ class SwitchBeeSwitchEntity(CoordinatorEntity[SwitchBeeCoordinator], SwitchEntit @property def available(self) -> bool: """Return True if entity is available.""" - return self._is_online and self.coordinator.last_update_success + return self._is_online and super().available @callback def _handle_coordinator_update(self) -> None: