We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f5118f commit 4c3ecd9Copy full SHA for 4c3ecd9
custom_components/lelight/connector.py
@@ -25,9 +25,6 @@ def _make_message(self, command: Command) -> Message:
25
return self.encryptor.message(command)
26
27
async def send(self, command: Command):
28
- # Send commands twice
29
- await self.backend.send_message(self._make_message(command))
30
- await sleep(0.2)
31
await self.backend.send_message(self._make_message(command))
32
33
def __enter__(self):
0 commit comments