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
def color_temp(self) -> int:
"""Return the color temperature."""
temp = self._get_property('ct')
if temp:
self._color_temp = temp
return kelvin_to_mired(int(self._color_temp))
temp_in_k = self._get_property('ct')
if temp_in_k:
self._color_temp = kelvin_to_mired(int(temp_in_k))
return self._color_temp
@property
def name(self) -> str: