Skip to content

Commit 280d58e

Browse files
committed
Linting
1 parent 9882fb0 commit 280d58e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adb_shell/adb_device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@ def _filesync_send(self, command_id, adb_info, filesync_info, data=b"", size=Non
15901590
self._filesync_flush(adb_info, filesync_info)
15911591

15921592
buf = struct.pack(b"<2I", constants.FILESYNC_ID_TO_WIRE[command_id], size) + data
1593-
filesync_info.send_buffer[filesync_info.send_idx : filesync_info.send_idx + len(buf)] = buf
1593+
filesync_info.send_buffer[filesync_info.send_idx : filesync_info.send_idx + len(buf)] = buf # noqa
15941594
filesync_info.send_idx += len(buf)
15951595

15961596

adb_shell/adb_device_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1650,7 +1650,7 @@ async def _filesync_send(self, command_id, adb_info, filesync_info, data=b"", si
16501650
await self._filesync_flush(adb_info, filesync_info)
16511651

16521652
buf = struct.pack(b"<2I", constants.FILESYNC_ID_TO_WIRE[command_id], size) + data
1653-
filesync_info.send_buffer[filesync_info.send_idx : filesync_info.send_idx + len(buf)] = buf
1653+
filesync_info.send_buffer[filesync_info.send_idx : filesync_info.send_idx + len(buf)] = buf # noqa
16541654
filesync_info.send_idx += len(buf)
16551655

16561656

0 commit comments

Comments
 (0)