Fix checks

This commit is contained in:
Andre Basche
2024-03-18 01:16:18 +01:00
parent 38a67ad64c
commit 20d467a2d5
5 changed files with 7 additions and 10 deletions
+3 -3
View File
@@ -414,9 +414,9 @@ async def async_setup_entry(
entity = HonConfigSwitchEntity(hass, entry, device, description)
elif isinstance(description, HonControlSwitchEntityDescription):
if not (
device.get(description.key) is not None
or description.turn_on_key in list(device.commands)
or description.turn_off_key in list(device.commands)
device.get(description.key) is not None
or description.turn_on_key in list(device.commands)
or description.turn_off_key in list(device.commands)
):
continue
entity = HonControlSwitchEntity(hass, entry, device, description)