From c89182008a7946ce405e4477e5d0f16cce6a11d1 Mon Sep 17 00:00:00 2001 From: Ryan Spicer Date: Sun, 18 Sep 2016 23:06:34 -0700 Subject: [PATCH] fix missing docstring. --- homeassistant/components/light/mqtt.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/light/mqtt.py b/homeassistant/components/light/mqtt.py index f7e334b7cf7..f677a96dbba 100644 --- a/homeassistant/components/light/mqtt.py +++ b/homeassistant/components/light/mqtt.py @@ -209,6 +209,7 @@ class MqttLight(Light): @property def color_temp(self): + """Return the color temperature in mired.""" return self._color_temp @property