diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-08-26 15:53:41 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-08-26 15:53:41 -0400 |
commit | 5fb6482692cfffba5ba45102858b14ba3acc5bc7 (patch) | |
tree | e5e02188cf3eea77658cc4d237d06a24e7781c9e /tools/hacking.py | |
parent | 2e6aa38e0986ee67f5e93cd6bb7b32c52f8207e6 (diff) | |
download | vyos-cloud-init-5fb6482692cfffba5ba45102858b14ba3acc5bc7.tar.gz vyos-cloud-init-5fb6482692cfffba5ba45102858b14ba3acc5bc7.zip |
further remove evidence of pylint.
This just removes comments '# pylint:' things and other code
remnents of pylint.
Diffstat (limited to 'tools/hacking.py')
-rwxr-xr-x | tools/hacking.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/hacking.py b/tools/hacking.py index 14bd0cda..e7797564 100755 --- a/tools/hacking.py +++ b/tools/hacking.py @@ -154,7 +154,7 @@ def add_cloud(): if not inspect.isfunction(function): continue if name.startswith("cloud_"): - exec("pep8.%s = %s" % (name, name)) # pylint: disable=W0122 + exec("pep8.%s = %s" % (name, name)) if __name__ == "__main__": # NOVA based 'hacking.py' error codes start with an N @@ -163,7 +163,7 @@ if __name__ == "__main__": pep8.current_file = current_file pep8.readlines = readlines try: - pep8._main() # pylint: disable=W0212 + pep8._main() finally: if len(_missingImport) > 0: print >> sys.stderr, ("%i imports missing in this test environment" |