mirror of
https://github.com/home-assistant/core.git
synced 2025-07-18 18:57:06 +00:00
Correctly load Mopar's config (#22771)
This commit is contained in:
parent
9eb32728f1
commit
a44966f483
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user