From 98ef1e1e8210eae7ba7263d6206dede44460f5c1 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 4 May 2021 22:18:46 +0200 Subject: [PATCH] Remove stale config schema from ESPHome integration (#50083) --- homeassistant/components/esphome/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/homeassistant/components/esphome/__init__.py b/homeassistant/components/esphome/__init__.py index 66b16cf3fe3..a3b3f187906 100644 --- a/homeassistant/components/esphome/__init__.py +++ b/homeassistant/components/esphome/__init__.py @@ -51,9 +51,6 @@ _LOGGER = logging.getLogger(__name__) STORAGE_VERSION = 1 -# No config schema - only configuration entry -CONFIG_SCHEMA = vol.Schema({}, extra=vol.ALLOW_EXTRA) - async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Set up the esphome component."""