diff mbox series

[ACT,3/3] UBUNTU: SAUCE: ubuntu_ltp_syscalls: white-space cleanup

Message ID 20210607152313.76054-3-krzysztof.kozlowski@canonical.com
State New
Headers show
Series [ACT,1/3] UBUNTU: SAUCE: ubuntu_ltp_syscalls: drop unneeded pass | expand

Commit Message

Krzysztof Kozlowski June 7, 2021, 3:23 p.m. UTC
Cleanup white-spaces, no functional change.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Po-Hsu Lin June 8, 2021, 1:12 p.m. UTC | #1
Acked-by: Po-Hsu Lin <po-hsu.lin@canonical.com>
Applied and pushed.

Thanks
Sam
diff mbox series

Patch

diff --git a/ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py b/ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py
index 296a8aa33777..b6b09246393b 100644
--- a/ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py
+++ b/ubuntu_ltp_syscalls/ubuntu_ltp_syscalls.py
@@ -8,8 +8,8 @@  import sys
 import time
 import shutil
 import signal
-from autotest.client                        import test, utils
-from autotest.client.shared     import error
+from autotest.client import test, utils
+from autotest.client.shared import error
 
 # python is redefining the SIGXFSZ handler internally, blocking the delivery of
 # this signal to any forked task. Make sure to restore the default signal
@@ -24,7 +24,7 @@  class ubuntu_ltp_syscalls(test.test):
     version = 1
 
     def install_required_pkgs(self):
-        arch   = platform.processor()
+        arch = platform.processor()
 
         pkgs = [
             'automake',
@@ -114,7 +114,7 @@  class ubuntu_ltp_syscalls(test.test):
         sys.path.append(os.path.dirname(__file__))
         from testcase_blacklist import blacklist_db
         try:
-            from packaging.version          import parse
+            from packaging.version import parse
         except ImportError:
             # Compatibility fix for release < xenial and release > groovy (no python-packaging on groovy)
             from distutils.version import StrictVersion