fix black checks
This commit is contained in:
parent
6ba50f8456
commit
5647cc24e6
1 changed files with 1 additions and 3 deletions
|
@ -314,12 +314,10 @@ class HonSelectEntity(HonEntity, SelectEntity):
|
|||
setting.value = self._option_to_number(option, setting.values)
|
||||
key_parts = self.entity_description.key.split(".")
|
||||
command = key_parts[0]
|
||||
|
||||
if (self.entity_description.send_key_only):
|
||||
if self.entity_description.send_key_only:
|
||||
await self._device.commands[command].send_specific([key_parts[1]])
|
||||
else:
|
||||
await self._device.commands[command].send()
|
||||
|
||||
if command != "settings":
|
||||
self._device.sync_command(command, "settings")
|
||||
await self.coordinator.async_refresh()
|
||||
|
|
Loading…
Reference in a new issue