Correctly load Mopar's config (#22771)

pull/22883/head
Rohan Kapoor 2019-04-05 09:15:35 -07:00 committed by Paulus Schoutsen
parent 9eb32728f1
commit a44966f483
1 changed files with 5 additions and 4 deletions

View File

@ -53,12 +53,13 @@ def setup(hass, config):
"""Set up the Mopar component."""
import motorparts
conf = config[DOMAIN]
cookie = hass.config.path(COOKIE_FILE)
try:
session = motorparts.get_session(
config[CONF_USERNAME],
config[CONF_PASSWORD],
config[CONF_PIN],
conf[CONF_USERNAME],
conf[CONF_PASSWORD],
conf[CONF_PIN],
cookie_path=cookie
)
except motorparts.MoparError:
@ -69,7 +70,7 @@ def setup(hass, config):
data.update(now=None)
track_time_interval(
hass, data.update, config[CONF_SCAN_INTERVAL]
hass, data.update, conf[CONF_SCAN_INTERVAL]
)
def handle_horn(call):