From 9478b7de29beef3d576a709d95213a20558edd41 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 9bc9c93e0d1..4c84eb687ad 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, )