Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion adb/common_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def StartCli(argv, device_callback, kwarg_callback=None, list_callback=None,
method = getattr(dev, method_name)
argspec = inspect.getargspec(method)
num_args = len(argspec.args) - 1 # self is the first one.
num_args -= len(argspec.defaults or [])
#num_args -= len(argspec.defaults or [])
# Handle putting the remaining command line args into the last normal arg.
argv.pop(0)

Expand Down