Remove deprecated comments

This commit is contained in:
Philip Rosenberg-Watt 2018-05-31 13:59:26 -06:00
parent cc264f415e
commit 753fe8279b
3 changed files with 5 additions and 7 deletions

View file

@ -268,7 +268,6 @@ class GenericThermostat(ClimateDevice):
if self._min_temp:
return self._min_temp
# get default temp from super class
return DEFAULT_MIN_TEMP
@property
@ -278,7 +277,6 @@ class GenericThermostat(ClimateDevice):
if self._max_temp:
return self._max_temp
# Get default temp from super class
return DEFAULT_MAX_TEMP
@asyncio.coroutine