diff options
author | Scott Moser <smoser@ubuntu.com> | 2013-03-07 17:13:05 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2013-03-07 17:13:05 -0500 |
commit | 5da3984c2ca9e94b2483ab89ecdb5c93b5afb9f8 (patch) | |
tree | 10a659fd2664e42d2da1ce68d97eff5d6c112561 /cloudinit/handlers/shell_script.py | |
parent | aae7fe638f61aaf02c6579d5b691a8641455c875 (diff) | |
download | vyos-cloud-init-5da3984c2ca9e94b2483ab89ecdb5c93b5afb9f8.tar.gz vyos-cloud-init-5da3984c2ca9e94b2483ab89ecdb5c93b5afb9f8.zip |
more pep8/pylint. all clean now
Diffstat (limited to 'cloudinit/handlers/shell_script.py')
-rw-r--r-- | cloudinit/handlers/shell_script.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/handlers/shell_script.py b/cloudinit/handlers/shell_script.py index 2a87e8dd..b185c374 100644 --- a/cloudinit/handlers/shell_script.py +++ b/cloudinit/handlers/shell_script.py @@ -41,7 +41,8 @@ class ShellScriptPartHandler(handlers.Handler): handlers.type_from_starts_with("#!"), ] - def handle_part(self, _data, ctype, filename, payload, _frequency): + def handle_part(self, _data, ctype, filename, # pylint: disable=W0221 + payload, frequency): # pylint: disable=W0613 if ctype in handlers.CONTENT_SIGNALS: # TODO(harlowja): maybe delete existing things here return |