diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-09-16 09:53:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-16 09:53:09 -0400 |
commit | 22220e200a43f9a172e1abac93907b48d60d3ee0 (patch) | |
tree | 8e4b6b9f685893f4332f832fff60cd2da08c297a /cloudinit/sources/DataSourceNone.py | |
parent | 6d332e5c8dbfb6521a530b1fa49d73da51efff96 (diff) | |
download | vyos-cloud-init-22220e200a43f9a172e1abac93907b48d60d3ee0.tar.gz vyos-cloud-init-22220e200a43f9a172e1abac93907b48d60d3ee0.zip |
cloudinit: remove unused LOG variables (#574)
Co-authored-by: Rick Harding <rharding@mitechie.com>
Diffstat (limited to 'cloudinit/sources/DataSourceNone.py')
-rw-r--r-- | cloudinit/sources/DataSourceNone.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cloudinit/sources/DataSourceNone.py b/cloudinit/sources/DataSourceNone.py index e6250801..b7656ac5 100644 --- a/cloudinit/sources/DataSourceNone.py +++ b/cloudinit/sources/DataSourceNone.py @@ -4,11 +4,8 @@ # # This file is part of cloud-init. See LICENSE file for license information. -from cloudinit import log as logging from cloudinit import sources -LOG = logging.getLogger(__name__) - class DataSourceNone(sources.DataSource): |