Fix PEP257 issues

This commit is contained in:
Fabian Affolter 2016-03-07 20:20:07 +01:00
parent f6bc1a4575
commit fb7bd1bfe1
9 changed files with 30 additions and 36 deletions

View file

@ -1,7 +1,5 @@
"""
homeassistant.components.automation.numeric_state
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Offers numeric state listening automation rules.
Offer numeric state listening automation rules.
For more details about this automation rule, please refer to the documentation
at https://home-assistant.io/components/automation/#numeric-state-trigger
@ -50,7 +48,7 @@ def trigger(hass, config, action):
# pylint: disable=unused-argument
def state_automation_listener(entity, from_s, to_s):
"""Listens for state changes and calls action."""
"""Listen for state changes and calls action."""
# Fire action if we go from outside range into range
if _in_range(above, below, renderer(to_s)) and \
(from_s is None or not _in_range(above, below, renderer(from_s))):
@ -63,7 +61,7 @@ def trigger(hass, config, action):
def if_action(hass, config):
"""Wraps action method with state based condition."""
"""Wrap action method with state based condition."""
entity_id = config.get(CONF_ENTITY_ID)
if entity_id is None:
@ -91,7 +89,7 @@ def if_action(hass, config):
def _in_range(range_start, range_end, value):
"""Checks if value is inside the range."""
"""Check if value is inside the range."""
try:
value = float(value)
except ValueError: