summaryrefslogtreecommitdiff
path: root/tests/unittests/test_util.py
diff options
context:
space:
mode:
authorJay Faulkner <jay@jvf.cc>2014-08-26 16:05:58 -0400
committerScott Moser <smoser@ubuntu.com>2014-08-26 16:05:58 -0400
commit31f9129c8a77aec8d3eb6fa649d1caa9b6df347e (patch)
tree10d634bc7732390c5043bd2ff1a678b5289abb93 /tests/unittests/test_util.py
parent190cacc430900d9d2dd4dd45c59d01e30e469720 (diff)
parent5fb6482692cfffba5ba45102858b14ba3acc5bc7 (diff)
downloadvyos-cloud-init-31f9129c8a77aec8d3eb6fa649d1caa9b6df347e.tar.gz
vyos-cloud-init-31f9129c8a77aec8d3eb6fa649d1caa9b6df347e.zip
Fix pep8 issues, drop pylint.
pep8: passes on pylint 1.5.7 (and 1.5.6 utopic). intent is that is to be the target for future changes. pylint: remove as more hassle than its worth. Intent is to move to pyflakes at some point.
Diffstat (limited to 'tests/unittests/test_util.py')
-rw-r--r--tests/unittests/test_util.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/unittests/test_util.py b/tests/unittests/test_util.py
index 0cb41520..35e92445 100644
--- a/tests/unittests/test_util.py
+++ b/tests/unittests/test_util.py
@@ -1,5 +1,3 @@
-# pylint: disable=C0301
-# the mountinfo data lines are too long
import os
import stat
import yaml
@@ -18,7 +16,7 @@ class FakeSelinux(object):
self.match_what = match_what
self.restored = []
- def matchpathcon(self, path, mode): # pylint: disable=W0613
+ def matchpathcon(self, path, mode):
if path == self.match_what:
return
else:
@@ -27,7 +25,7 @@ class FakeSelinux(object):
def is_selinux_enabled(self):
return True
- def restorecon(self, path, recursive): # pylint: disable=W0613
+ def restorecon(self, path, recursive):
self.restored.append(path)