You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
snake_case is the preferred method of naming both functions and multi-word variables. I'd also suggest keeping variable names for primitives to lowercase and reserving capitalized variable names for objects. For example in this block from the "StartApplication" function in Android.py:
snake_case is the preferred method of naming both functions and multi-word variables. I'd also suggest keeping variable names for primitives to lowercase and reserving capitalized variable names for objects. For example in this block from the "StartApplication" function in
Android.py
:Command = 'sudo adb -s ' + udid + " shell monkey -p " + str(app) + " -c android.intent.category.LAUNCHER 1"
Command
is a String, but due to style it seems as though it should be an objectThe text was updated successfully, but these errors were encountered: