From bb848e7fcda246f772dc528ce0748d396748853a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 11 Aug 2015 14:55:47 +0200 Subject: [PATCH] update header --- homeassistant/components/light/isy994.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/homeassistant/components/light/isy994.py b/homeassistant/components/light/isy994.py index ae0225a1e3c..b231fe3e441 100644 --- a/homeassistant/components/light/isy994.py +++ b/homeassistant/components/light/isy994.py @@ -1,8 +1,10 @@ -""" Support for ISY994 lights. """ -# system imports +""" +homeassistant.components.light.isy994 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Support for ISY994 lights. +""" import logging -# homeassistant imports from homeassistant.components.isy994 import (ISYDeviceABC, ISY, SENSOR_STRING, HIDDEN_STRING) from homeassistant.components.light import ATTR_BRIGHTNESS @@ -10,7 +12,7 @@ from homeassistant.const import STATE_ON, STATE_OFF def setup_platform(hass, config, add_devices, discovery_info=None): - """ Sets up the isy994 platform. """ + """ Sets up the ISY994 platform. """ logger = logging.getLogger(__name__) devs = [] # verify connection @@ -29,7 +31,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None): class ISYLightDevice(ISYDeviceABC): - """ represents as isy light within home assistant. """ + """ Represents as ISY light. """ _domain = 'light' _dtype = 'analog'