diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-08-09 13:42:55 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-08-09 13:42:55 -0400 |
commit | 0243c5d9c7948e247a85870a24835e2f5ce92cb0 (patch) | |
tree | b67c2911c07b013f893f1ac0c8428a99c9095628 /tests/unittests/test_userdata.py | |
parent | 1bb67be5bd8c826717c9757f727406c73c7ef4e8 (diff) | |
parent | 0849ad447de8a1628e6b0158a5ce9b45d93f9bb8 (diff) | |
download | vyos-cloud-init-0243c5d9c7948e247a85870a24835e2f5ce92cb0.tar.gz vyos-cloud-init-0243c5d9c7948e247a85870a24835e2f5ce92cb0.zip |
fix pylint in all files used by ./tools/run-pylint
'make pylint' was not checking tests and tools.
This fixies a bunch of pylint/pep8 issues in that code.
It also enables 'make pylint' to check them.
Diffstat (limited to 'tests/unittests/test_userdata.py')
-rw-r--r-- | tests/unittests/test_userdata.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/unittests/test_userdata.py b/tests/unittests/test_userdata.py index 861642b6..fbbf07f2 100644 --- a/tests/unittests/test_userdata.py +++ b/tests/unittests/test_userdata.py @@ -4,18 +4,14 @@ import StringIO import logging import os -import shutil -import tempfile from email.mime.base import MIMEBase from mocker import MockerTestCase -from cloudinit import helpers from cloudinit import log from cloudinit import sources from cloudinit import stages -from cloudinit import util INSTANCE_ID = "i-testing" |