Mark removed config schemas as removed (#61014)

This commit is contained in:
Franck Nijhof 2021-12-21 12:46:10 +01:00 committed by GitHub
parent e2fca2e305
commit eb5a321a9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 28 additions and 29 deletions

View file

@ -5,7 +5,7 @@ import homeassistant.helpers.config_validation as cv
from .const import DOMAIN, PLATFORMS
CONFIG_SCHEMA = cv.deprecated(DOMAIN)
CONFIG_SCHEMA = cv.removed(DOMAIN, raise_if_present=False)
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: