Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
albaintor committed Jul 30, 2024
1 parent cfb1ea8 commit f8e7f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyatv/protocols/companion/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ async def click(self, action: InputAction):
"""
if action in [InputAction.SingleTap, InputAction.DoubleTap]:
count = 1 if action == InputAction.SingleTap else 2
for i in range(count):
for _i in range(count):
await self._send_command("_hidC", {"_hBtS": 1, "_hidC": 6})
await asyncio.sleep(0.02)
await self._send_command("_hidC", {"_hBtS": 2, "_hidC": 6})
Expand Down

0 comments on commit f8e7f1b

Please sign in to comment.