From 675b7ca7ba95a935753351f65170d2c21cc5336b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Sat, 2 Mar 2024 12:52:20 +0100 Subject: [PATCH] Fix config schema for velux (#112037) --- homeassistant/components/velux/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/velux/__init__.py b/homeassistant/components/velux/__init__.py index 9bc9c93e0d1a..4c84eb687ad5 100644 --- a/homeassistant/components/velux/__init__.py +++ b/homeassistant/components/velux/__init__.py @@ -22,8 +22,8 @@ CONFIG_SCHEMA = vol.Schema( } ) }, - extra=vol.ALLOW_EXTRA, - ) + ), + extra=vol.ALLOW_EXTRA, )