fix black checks

This commit is contained in:
Vadym Melnychuk 2023-12-03 20:57:27 +02:00
parent 6ba50f8456
commit 5647cc24e6

View file

@ -314,12 +314,10 @@ class HonSelectEntity(HonEntity, SelectEntity):
setting.value = self._option_to_number(option, setting.values) setting.value = self._option_to_number(option, setting.values)
key_parts = self.entity_description.key.split(".") key_parts = self.entity_description.key.split(".")
command = key_parts[0] 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]]) await self._device.commands[command].send_specific([key_parts[1]])
else: else:
await self._device.commands[command].send() await self._device.commands[command].send()
if command != "settings": if command != "settings":
self._device.sync_command(command, "settings") self._device.sync_command(command, "settings")
await self.coordinator.async_refresh() await self.coordinator.async_refresh()