From 557dae7ab3fc818a3c1da5cdf1e7eb4cb9e71dd3 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 19 Mar 2016 19:44:20 -0700 Subject: [PATCH] Fix typo in light docs --- homeassistant/components/light/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/light/__init__.py b/homeassistant/components/light/__init__.py index a80154bc16e..fa3aaa80596 100644 --- a/homeassistant/components/light/__init__.py +++ b/homeassistant/components/light/__init__.py @@ -227,7 +227,7 @@ def setup(hass, config): pass if ATTR_COLOR_TEMP in dat: - # color_temp should be an int of mirads value + # color_temp should be an int of mireds value colortemp = dat.get(ATTR_COLOR_TEMP) # Without this check, a ctcolor with value '99' would work @@ -298,7 +298,7 @@ class Light(ToggleEntity): @property def color_temp(self): - """Return the CT color value in mirads.""" + """Return the CT color value in mireds.""" return None @property