Skip to content

Commit

Permalink
Fix USB typo (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion authored Jul 1, 2021
1 parent 59ff72e commit 17540be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion adb_shell/adb_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ def _send(self, msg, adb_info):
self._transport.bulk_write(msg.data, adb_info.transport_timeout_s)

def _streaming_command(self, service, command, adb_info):
"""One complete set of USB packets for a single command.
"""One complete set of packets for a single command.
1. :meth:`~AdbDevice._open` a new connection to the device, where the ``destination`` parameter is ``service:command``
2. Read the response data via :meth:`AdbDevice._read_until_close`
Expand Down
2 changes: 1 addition & 1 deletion adb_shell/adb_device_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ async def _send(self, msg, adb_info):
await self._transport.bulk_write(msg.data, adb_info.transport_timeout_s)

async def _streaming_command(self, service, command, adb_info):
"""One complete set of USB packets for a single command.
"""One complete set of packets for a single command.
1. :meth:`~AdbDeviceAsync._open` a new connection to the device, where the ``destination`` parameter is ``service:command``
2. Read the response data via :meth:`AdbDeviceAsync._read_until_close`
Expand Down

0 comments on commit 17540be

Please sign in to comment.