Update docstring (quotes, links, content) (#5602)

This commit is contained in:
Fabian Affolter
2017-01-28 16:02:19 +01:00
committed by GitHub
parent 72bc8fc5bf
commit e1412a223c
9 changed files with 32 additions and 33 deletions

View File

@@ -1,9 +1,9 @@
"""
Component for interacting with a Lutron RadioRA 2 system.
Uses pylutron (http://github.com/thecynic/pylutron).
For more details about this component, please refer to the documentation at
https://home-assistant.io/components/lutron/
"""
import logging
from homeassistant.helpers import discovery
@@ -13,7 +13,7 @@ from homeassistant.loader import get_component
REQUIREMENTS = ['https://github.com/thecynic/pylutron/archive/v0.1.0.zip#'
'pylutron==0.1.0']
DOMAIN = "lutron"
DOMAIN = 'lutron'
_LOGGER = logging.getLogger(__name__)
@@ -38,7 +38,7 @@ def setup(hass, base_config):
)
hass.data[LUTRON_CONTROLLER].load_xml_db()
hass.data[LUTRON_CONTROLLER].connect()
_LOGGER.info("Connected to Main Repeater @ %s", config['lutron_host'])
_LOGGER.info("Connected to Main Repeater at %s", config['lutron_host'])
group = get_component('group')