diff options
| author | Joshua Harlow <harlowja@gmail.com> | 2016-05-12 14:25:32 -0700 | 
|---|---|---|
| committer | Joshua Harlow <harlowja@gmail.com> | 2016-05-12 14:25:32 -0700 | 
| commit | 78cbc764486060928541b9dee6ce5779e622d1fa (patch) | |
| tree | 48a886ea0a9857ce353eebe504048e656e1c6e92 /cloudinit/sources/helpers/vmware/imc/config_source.py | |
| parent | 690bdce9a73ec6d00b4eebbbca31cc527e7b2fce (diff) | |
| parent | 811f7b5b3c4590ee4a16662db37b1f37541d9822 (diff) | |
| download | vyos-cloud-init-78cbc764486060928541b9dee6ce5779e622d1fa.tar.gz vyos-cloud-init-78cbc764486060928541b9dee6ce5779e622d1fa.zip  | |
Enable flake8 and fix a large amount of reported issues
Diffstat (limited to 'cloudinit/sources/helpers/vmware/imc/config_source.py')
| -rw-r--r-- | cloudinit/sources/helpers/vmware/imc/config_source.py | 46 | 
1 files changed, 23 insertions, 23 deletions
diff --git a/cloudinit/sources/helpers/vmware/imc/config_source.py b/cloudinit/sources/helpers/vmware/imc/config_source.py index a367e476..28ef306a 100644 --- a/cloudinit/sources/helpers/vmware/imc/config_source.py +++ b/cloudinit/sources/helpers/vmware/imc/config_source.py @@ -1,23 +1,23 @@ -# vi: ts=4 expandtab
 -#
 -#    Copyright (C) 2015 Canonical Ltd.
 -#    Copyright (C) 2015 VMware Inc.
 -#
 -#    Author: Sankar Tanguturi <stanguturi@vmware.com>
 -#
 -#    This program is free software: you can redistribute it and/or modify
 -#    it under the terms of the GNU General Public License version 3, as
 -#    published by the Free Software Foundation.
 -#
 -#    This program is distributed in the hope that it will be useful,
 -#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 -#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 -#    GNU General Public License for more details.
 -#
 -#    You should have received a copy of the GNU General Public License
 -#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 -
 -
 -class ConfigSource:
 -    """Specifies a source for the Config Content."""
 -    pass
 +# vi: ts=4 expandtab +# +#    Copyright (C) 2015 Canonical Ltd. +#    Copyright (C) 2015 VMware Inc. +# +#    Author: Sankar Tanguturi <stanguturi@vmware.com> +# +#    This program is free software: you can redistribute it and/or modify +#    it under the terms of the GNU General Public License version 3, as +#    published by the Free Software Foundation. +# +#    This program is distributed in the hope that it will be useful, +#    but WITHOUT ANY WARRANTY; without even the implied warranty of +#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the +#    GNU General Public License for more details. +# +#    You should have received a copy of the GNU General Public License +#    along with this program.  If not, see <http://www.gnu.org/licenses/>. + + +class ConfigSource(object): +    """Specifies a source for the Config Content.""" +    pass  | 
