From 8bcfe4c8591983c21ad6b2a69c3e493c6f5ae6e6 Mon Sep 17 00:00:00 2001 From: Aaron Bach Date: Wed, 21 Oct 2020 15:35:20 -0600 Subject: [PATCH] Remove coordinator success from SimpliSafe availability calculation (#42180) --- homeassistant/components/simplisafe/__init__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/homeassistant/components/simplisafe/__init__.py b/homeassistant/components/simplisafe/__init__.py index dba17e6ef93..e81559bd1fa 100644 --- a/homeassistant/components/simplisafe/__init__.py +++ b/homeassistant/components/simplisafe/__init__.py @@ -622,11 +622,7 @@ class SimpliSafeEntity(CoordinatorEntity): # the entity as available if: # 1. We can verify that the system is online (assuming True if we can't) # 2. We can verify that the entity is online - return ( - self.coordinator.last_update_success - and not (self._system.version == 3 and self._system.offline) - and self._online - ) + return not (self._system.version == 3 and self._system.offline) and self._online @property def device_info(self):