Skip to content

Commit e02a933

Browse files
authored
remote.py linting
1 parent 312e663 commit e02a933

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/remote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,15 @@ async def send_commands(self, cmd_id: str, params: dict[str, Any] | None = None)
120120
if result != StatusCodes.OK:
121121
res = result
122122
if delay > 0:
123-
await asyncio.sleep(delay/1000)
123+
await asyncio.sleep(delay / 1000)
124124
else:
125125
commands = params.get("sequence", [])
126126
for command in commands:
127127
result = await self._device.send_media_player_command(command)
128128
if result != StatusCodes.OK:
129129
res = result
130130
if delay > 0:
131-
await asyncio.sleep(delay/1000)
131+
await asyncio.sleep(delay / 1000)
132132
return res
133133

134134
def filter_changed_attributes(self, update: dict[str, Any]) -> dict[str, Any]:

0 commit comments

Comments
 (0)