diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-11-12 22:11:34 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-11-12 22:11:34 -0500 |
commit | 9c64c5d0e01e48612fe37d3304b1f6eb70181cae (patch) | |
tree | 2caccdbfd23aeb327536de5c4bec420145b80574 | |
parent | afd5df4d5d506e84a0a062e84355558a4392559c (diff) | |
download | vyos-cloud-init-9c64c5d0e01e48612fe37d3304b1f6eb70181cae.tar.gz vyos-cloud-init-9c64c5d0e01e48612fe37d3304b1f6eb70181cae.zip |
pylint and pep8 fixes
-rw-r--r-- | cloudinit/stages.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/stages.py b/cloudinit/stages.py index e83d72da..94a267df 100644 --- a/cloudinit/stages.py +++ b/cloudinit/stages.py @@ -36,8 +36,6 @@ from cloudinit.handlers import cloud_config as cc_part from cloudinit.handlers import shell_script as ss_part from cloudinit.handlers import upstart_job as up_part -from cloudinit.sources import DataSourceNone - from cloudinit import cloud from cloudinit import config from cloudinit import distros @@ -51,6 +49,7 @@ LOG = logging.getLogger(__name__) NULL_DATA_SOURCE = None + class Init(object): def __init__(self, ds_deps=None): if ds_deps is not None: |