From f60f3fa4a293cfbe164633eacf7d6b53f40b3b8d Mon Sep 17 00:00:00 2001 From: sander Date: Fri, 6 Nov 2015 08:37:22 +0100 Subject: [PATCH] Removed unused `self._sensorid`. --- .../components/thermostat/honeywell_round_connected.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/homeassistant/components/thermostat/honeywell_round_connected.py b/homeassistant/components/thermostat/honeywell_round_connected.py index eaacd6c025b..cba05e06871 100644 --- a/homeassistant/components/thermostat/honeywell_round_connected.py +++ b/homeassistant/components/thermostat/honeywell_round_connected.py @@ -53,7 +53,6 @@ class RoundThermostat(ThermostatDevice): self._current_temperature = None self._target_temperature = None self._name = "round connected" - self._sensorid = None self.update() @property @@ -98,6 +97,5 @@ class RoundThermostat(ThermostatDevice): self._current_temperature = _device['temp'] self._target_temperature = _device['setpoint'] self._name = _device['name'] - self._sensorid = _device['id'] except StopIteration: logger.error("Did not receive any temperature data from the evohomeclient api.")