Correct formatting

This commit is contained in:
Todd Ingarfield 2015-10-09 11:38:39 -05:00
parent 0cf909cce9
commit a3d295d885

View File

@ -70,7 +70,6 @@ class RadioThermostat(ThermostatDevice):
"mode": self.device.tmode['human']
}
@property
def current_temperature(self):
""" Returns the current temperature. """
@ -97,7 +96,6 @@ class RadioThermostat(ThermostatDevice):
return round(temp, 1)
def set_temperature(self, temperature):
""" Set new target temperature """
if self.operation == STATE_COOL:
@ -108,6 +106,3 @@ class RadioThermostat(ThermostatDevice):
def set_name(self, name):
""" Set thermostat name """
self.device.name = name