Skip to content

Commit

Permalink
Nit
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed Oct 19, 2023
1 parent d5474b7 commit efcc621
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/tools/interop/idt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ Follow the Linux installation steps above, but do not use Docker.
> **_IMPORTANT_**
> `idt_` commands are shell aliases helpful for administrative commands.
> `idt` invokes the `idt` python package.
> Output from `idt` will always be colorized while output from subprocesses is white.
RPi users, as needed:
Expand Down
7 changes: 3 additions & 4 deletions src/tools/interop/idt/capture/platform/android/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,9 @@ def _check_connect_wireless_adb(self, temp_device_id: str) -> None:
self.get_adb_devices()

def _device_id_user_input(self) -> None:
# TODO: Fix
self.logger.critical('If there is no output below, press enter after connecting your phone under test OR')
self.logger.critical('Enter (copy paste) the target device id from the list of available devices below OR')
self.logger.critical('Enter $IP4:$PORT to connect wireless debugging.')
self.logger.error('Connect additional android devices via USB and press enter OR')
self.logger.error('Enter (copy paste) the target device id from the list of available devices below OR')
self.logger.error('Enter $IP4:$PORT to connect wireless debugging.')
self._log_adb_devices()
temp_device_id = input('').strip()
self._check_connect_wireless_adb(temp_device_id)
Expand Down

0 comments on commit efcc621

Please sign in to comment.