Closed stroz closed 5 years ago
mobly/controllers/android_device_lib/adb.py, line 19 at r1 (raw file):
> ``` > import pipes > ``` no longer used?
Looks like it's used here in cli_cmd_to_string: return ' '.join([pipes.quote(arg) for arg in args])
mobly/controllers/android_device_lib/adb.py, line 19 at r1 (raw file):
But you moved that function to `utils` right? so we don't need this import in `adb` any more?
Right, I believe we can remove this from adb.
mobly/controllers/android_device_lib/adb.py, line 19 at r1 (raw file):
Right, I believe we can remove this from adb.
Done.
The motivation is so this function can be better reused by other places.
This change is