This commit is contained in:
Paulus Schoutsen 2019-07-31 12:25:30 -07:00
parent da05dfe708
commit 4de97abc3a
2676 changed files with 163166 additions and 140084 deletions

View file

@ -1,17 +1,9 @@
"""Constants for the onboarding component."""
DOMAIN = 'onboarding'
STEP_USER = 'user'
STEP_CORE_CONFIG = 'core_config'
STEP_INTEGRATION = 'integration'
DOMAIN = "onboarding"
STEP_USER = "user"
STEP_CORE_CONFIG = "core_config"
STEP_INTEGRATION = "integration"
STEPS = [
STEP_USER,
STEP_CORE_CONFIG,
STEP_INTEGRATION,
]
STEPS = [STEP_USER, STEP_CORE_CONFIG, STEP_INTEGRATION]
DEFAULT_AREAS = (
'living_room',
'kitchen',
'bedroom',
)
DEFAULT_AREAS = ("living_room", "kitchen", "bedroom")