From b01131ab9deb0e9a262b89ec5082d55b0a5da90d Mon Sep 17 00:00:00 2001 From: Austin Mroczek Date: Thu, 30 Apr 2020 18:35:32 -0700 Subject: [PATCH] Add allow extra to totalconnect config schema (#34993) --- homeassistant/components/totalconnect/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/totalconnect/__init__.py b/homeassistant/components/totalconnect/__init__.py index fce67f71b24..25b1141bd9b 100644 --- a/homeassistant/components/totalconnect/__init__.py +++ b/homeassistant/components/totalconnect/__init__.py @@ -24,7 +24,8 @@ CONFIG_SCHEMA = vol.Schema( vol.Required(CONF_PASSWORD): cv.string, } ) - } + }, + extra=vol.ALLOW_EXTRA, )