From ea1d13c37fb94bdbee1dd87b3465faf2d4ce50f6 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Tue, 13 Sep 2016 10:22:47 +0100 Subject: [PATCH] common/android: pep8 fixes - added missing space between global definitions and a class - added missing space for inline comment --- wlauto/common/android/workload.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wlauto/common/android/workload.py b/wlauto/common/android/workload.py index 34bb8059..4e56a811 100644 --- a/wlauto/common/android/workload.py +++ b/wlauto/common/android/workload.py @@ -35,6 +35,7 @@ import wlauto.common.android.resources DELAY = 5 + # Due to the way `super` works you have to call it at every level but WA executes some # methods conditionally and so has to do them directly via the class, this breaks super # and causes it to run things mutiple times ect. As a work around for this untill workloads @@ -221,7 +222,7 @@ class ApkWorkload(Workload): self.check_apk_version() if self.launch_main: - self.launch_package() # launch default activity without intent data + self.launch_package() # launch default activity without intent data self.device.execute('am kill-all') # kill all *background* activities self.device.clear_logcat()