From 19a65f8db66f537c6711cd8c592daec54c0111ea Mon Sep 17 00:00:00 2001 From: Aaron Bach Date: Fri, 28 Jun 2019 21:38:07 -0600 Subject: [PATCH] Remove temperature attribute from SimpliSafe alarm control panel (#24833) --- homeassistant/components/simplisafe/alarm_control_panel.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/homeassistant/components/simplisafe/alarm_control_panel.py b/homeassistant/components/simplisafe/alarm_control_panel.py index 2cbe5632b6b..ac124a4cc65 100644 --- a/homeassistant/components/simplisafe/alarm_control_panel.py +++ b/homeassistant/components/simplisafe/alarm_control_panel.py @@ -14,7 +14,6 @@ from .const import DATA_CLIENT, DOMAIN, TOPIC_UPDATE _LOGGER = logging.getLogger(__name__) ATTR_ALARM_ACTIVE = 'alarm_active' -ATTR_TEMPERATURE = 'temperature' async def async_setup_platform( @@ -120,8 +119,6 @@ class SimpliSafeAlarm(alarm.AlarmControlPanel): from simplipy.system import SystemStates self._attrs[ATTR_ALARM_ACTIVE] = self._system.alarm_going_off - if self._system.temperature: - self._attrs[ATTR_TEMPERATURE] = self._system.temperature if self._system.state == SystemStates.error: return