Skip to content
Snippets Groups Projects
Commit 1a00d4a0 authored by Stefan Jonasson's avatar Stefan Jonasson
Browse files

pylint fix

parent e68cc83e
No related branches found
No related tags found
No related merge requests found
...@@ -32,13 +32,13 @@ def trigger(hass, config, action): ...@@ -32,13 +32,13 @@ def trigger(hass, config, action):
return False return False
hours, minutes, seconds = after.hour, after.minute, after.second hours, minutes, seconds = after.hour, after.minute, after.second
elif CONF_HOURS in config or CONF_MINUTES in config \ elif CONF_HOURS in config or CONF_MINUTES in config \
or CONF_SECONDS in config: or CONF_SECONDS in config:
hours = convert(config.get(CONF_HOURS), int) hours = convert(config.get(CONF_HOURS), int)
minutes = convert(config.get(CONF_MINUTES), int) minutes = convert(config.get(CONF_MINUTES), int)
seconds = convert(config.get(CONF_SECONDS), int) seconds = convert(config.get(CONF_SECONDS), int)
else: else:
_LOGGER.error('One of %s, %s, %s OR %s needs to be specified', _LOGGER.error('One of %s, %s, %s OR %s needs to be specified',
CONF_HOURS, CONF_MINUTES, CONF_SECONDS, CONF_AFTER) CONF_HOURS, CONF_MINUTES, CONF_SECONDS, CONF_AFTER)
return False return False
def time_automation_listener(now): def time_automation_listener(now):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment