This commit is contained in:
Bas Nijholt 2022-08-31 22:32:57 -07:00 committed by Bas Nijholt
commit 37304f3d35

View file

@ -99,6 +99,8 @@ class OptionsFlowHandler(config_entries.OptionsFlow):
options_schema = {}
for name, default, validation in VALIDATION_TUPLES:
if name == "sleep_rgb_or_color_temp":
continue
key = vol.Optional(name, default=conf.options.get(name, default))
value = to_replace.get(name, validation)
options_schema[key] = value