diff options
author | Jay Faulkner <jay@jvf.cc> | 2014-08-26 11:50:11 -0700 |
---|---|---|
committer | Jay Faulkner <jay@jvf.cc> | 2014-08-26 11:50:11 -0700 |
commit | b3216b56f3fea3259c290faa2dd496215b625904 (patch) | |
tree | b88edfcb8819f27a5189891236f2edeb3b859350 /tools/hacking.py | |
parent | 190cacc430900d9d2dd4dd45c59d01e30e469720 (diff) | |
download | vyos-cloud-init-b3216b56f3fea3259c290faa2dd496215b625904.tar.gz vyos-cloud-init-b3216b56f3fea3259c290faa2dd496215b625904.zip |
fix(pep8): Fix various pep8 violations and version-lock pep8
Fixed all complaints from running "make pep8". Also version locked
pep8 in test-requirements.txt to ensure that pep8 requirements don't
change without an explicit commit.
Diffstat (limited to 'tools/hacking.py')
-rwxr-xr-x | tools/hacking.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hacking.py b/tools/hacking.py index 26a07c53..14bd0cda 100755 --- a/tools/hacking.py +++ b/tools/hacking.py @@ -71,7 +71,7 @@ def cloud_import_alphabetical(physical_line, line_number, lines): # with or without "as y" length = [2, 4] if (len(split_line) in length and len(split_previous) in length and - split_line[0] == "import" and split_previous[0] == "import"): + split_line[0] == "import" and split_previous[0] == "import"): if split_line[1] < split_previous[1]: return (0, "N306: imports not in alphabetical order (%s, %s)" % (split_previous[1], split_line[1])) |