Remove empty schema (#45044)

This commit is contained in:
Paulus Schoutsen 2021-01-11 14:25:09 +01:00 committed by GitHub
parent 54064b4010
commit e584902b8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 0 additions and 30 deletions

View file

@ -1,15 +1,11 @@
"""The NEW_NAME integration."""
import asyncio
import voluptuous as vol
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from .const import DOMAIN
CONFIG_SCHEMA = vol.Schema({DOMAIN: vol.Schema({})}, extra=vol.ALLOW_EXTRA)
# TODO List the platforms that you want to support.
# For your initial PR, limit it to 1 platform.
PLATFORMS = ["light"]