Check that no configuration is provided (#3553)
This commit is contained in:
parent
68028afb98
commit
a7266ae6cf
8 changed files with 103 additions and 60 deletions
|
@ -6,8 +6,14 @@ https://home-assistant.io/components/introduction/
|
|||
"""
|
||||
import logging
|
||||
|
||||
import voluptuous as vol
|
||||
|
||||
DOMAIN = 'introduction'
|
||||
|
||||
CONFIG_SCHEMA = vol.Schema({
|
||||
DOMAIN: vol.Schema({}),
|
||||
}, extra=vol.ALLOW_EXTRA)
|
||||
|
||||
|
||||
def setup(hass, config=None):
|
||||
"""Setup the introduction component."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue