1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Addressed the comments in the issue. pep8+pylint seem fine now. (still works, too.)

This commit is contained in:
Markus Stenberg
2014-04-24 17:13:57 +03:00
parent 39d1fad8cc
commit 88fd75b4c7
2 changed files with 18 additions and 26 deletions

View File

@@ -150,8 +150,8 @@ def from_config_file(config_path, enable_logging=True):
if has_section("process"):
process = load_module('process')
kwargs = dict(config.items('process'))
add_status("process", process.setup(bus, statemachine, **kwargs))
processes = dict(config.items('process'))
add_status("process", process.setup(hass, processes))
# Light control
if has_section("light.hue"):