mirror of
https://github.com/home-assistant/core.git
synced 2025-11-16 14:30:22 +00:00
Check that no configuration is provided (#3553)
This commit is contained in:
committed by
Paulus Schoutsen
parent
68028afb98
commit
a7266ae6cf
@@ -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."""
|
||||
|
||||
Reference in New Issue
Block a user