ashishb / adb-enhanced

Missing module/function docstring PY-D0003
Documentation
Minor
2 occurrences in this check
Docstring missing for clear_debug_app
2101    execute_adb_shell_command2(cmd)
2102
2103
2104def clear_debug_app():2105    cmd = 'am clear-debug-app'
2106    execute_adb_shell_command2(cmd)
2107
Docstring missing for set_debug_app
2091
2092
2093@ensure_package_exists
2094def set_debug_app(app_name, wait_for_debugger, persistent):2095    cmd = 'am set-debug-app'
2096    if wait_for_debugger:
2097        cmd += ' -w'