Clean up stale config schema from deCONZ (#50081)

This commit is contained in:
Franck Nijhof 2021-05-04 20:06:54 +02:00 committed by GitHub
parent c21add195a
commit ee5f955fd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,4 @@
"""Support for deCONZ devices."""
import voluptuous as vol
from homeassistant.const import (
CONF_API_KEY,
CONF_HOST,
@ -15,10 +13,6 @@ from .const import CONF_GROUP_ID_BASE, CONF_MASTER_GATEWAY, DOMAIN
from .gateway import DeconzGateway
from .services import async_setup_services, async_unload_services
CONFIG_SCHEMA = vol.Schema(
{DOMAIN: vol.Schema({}, extra=vol.ALLOW_EXTRA)}, extra=vol.ALLOW_EXTRA
)
async def async_setup_entry(hass, config_entry):
"""Set up a deCONZ bridge for a config entry.