remove old stuff

This commit is contained in:
Vadym Melnychuk 2024-08-22 18:32:04 +03:00
parent 9a3036b161
commit f66bd14ed1
1 changed files with 0 additions and 2 deletions

View File

@ -510,7 +510,6 @@ class HonControlSwitchEntity(HonEntity, SwitchEntity):
async def async_turn_on(self, **kwargs: Any) -> None:
desc = self.entity_description
self._device.sync_command(desc.turn_on_key, "settings", desc.to_sync)
//await self.coordinator.async_refresh()
self.coordinator.async_set_updated_data({})
command = self._device.commands[desc.turn_on_key]
await command.send(desc.only_mandatory_parameters)
@ -520,7 +519,6 @@ class HonControlSwitchEntity(HonEntity, SwitchEntity):
async def async_turn_off(self, **kwargs: Any) -> None:
desc = self.entity_description
self._device.sync_command(desc.turn_off_key, "settings", desc.to_sync)
//await self.coordinator.async_refresh()
self.coordinator.async_set_updated_data({})
command = self._device.commands[desc.turn_off_key]
await command.send(desc.only_mandatory_parameters)