From 1f3bde3e0857272181168b2f03d643b9de022253 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Aug 2015 19:16:15 +0200 Subject: [PATCH] update header --- homeassistant/components/isy994.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/homeassistant/components/isy994.py b/homeassistant/components/isy994.py index dad3cd70534..5cdfbe1b277 100644 --- a/homeassistant/components/isy994.py +++ b/homeassistant/components/isy994.py @@ -1,15 +1,15 @@ """ homeassistant.components.isy994 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Connects to an ISY-994 controller and loads relevant components to control its devices. Also contains the base classes for ISY Sensors, Lights, and Switches. + +For configuration details please visit the documentation for this component at +https://home-assistant.io/components/isy994.html """ -# system imports import logging from urllib.parse import urlparse -# homeassistant imports from homeassistant import bootstrap from homeassistant.loader import get_component from homeassistant.helpers import validate_config @@ -19,7 +19,6 @@ from homeassistant.const import ( EVENT_HOMEASSISTANT_STOP, ATTR_SERVICE, ATTR_DISCOVERED, ATTR_FRIENDLY_NAME) -# homeassistant constants DOMAIN = "isy994" DEPENDENCIES = [] REQUIREMENTS = ['PyISY>=1.0.5'] @@ -31,7 +30,6 @@ SENSOR_STRING = 'Sensor' HIDDEN_STRING = '{HIDE ME}' CONF_TLS_VER = 'tls' -# setup logger _LOGGER = logging.getLogger(__name__)