Fix empty value in settings

pull/15/head
Andre Basche 11 months ago
parent 5575b240e1
commit 8ef8c0405d

@ -250,7 +250,9 @@ class HonAppliance:
if not (command := self.commands.get(command_name)):
return
for key in command.setting_keys:
if (new := self.attributes.get("parameters", {}).get(key)) is None:
if (
new := self.attributes.get("parameters", {}).get(key)
) is None or new.value == "":
continue
setting = command.settings[key]
try:

Loading…
Cancel
Save