Fix yeelight color temp getter (#24830)

* Fix yeelight color temp getter

* Remove wrong types
This commit is contained in:
zewelor 2019-06-29 07:56:11 +02:00 committed by Paulus Schoutsen
parent cde855f67d
commit b70f907d25

View File

@ -277,10 +277,10 @@ class YeelightGenericLight(Light):
@property @property
def color_temp(self) -> int: def color_temp(self) -> int:
"""Return the color temperature.""" """Return the color temperature."""
temp = self._get_property('ct') temp_in_k = self._get_property('ct')
if temp: if temp_in_k:
self._color_temp = temp self._color_temp = kelvin_to_mired(int(temp_in_k))
return kelvin_to_mired(int(self._color_temp)) return self._color_temp
@property @property
def name(self) -> str: def name(self) -> str: