summaryrefslogtreecommitdiff
path: root/cloudinit/sources/DataSourceGCE.py
diff options
context:
space:
mode:
authorScott Moser <smoser@brickies.net>2016-11-10 21:01:12 -0500
committerScott Moser <smoser@brickies.net>2016-11-10 21:01:12 -0500
commit584b8434872322a9f617831742cc6b15977ecfbc (patch)
tree2b4bf7cba8b20817789276ed34a108172ec4e119 /cloudinit/sources/DataSourceGCE.py
parentbf4010a9c379e2109b030af558033014f9137f47 (diff)
downloadvyos-cloud-init-584b8434872322a9f617831742cc6b15977ecfbc.tar.gz
vyos-cloud-init-584b8434872322a9f617831742cc6b15977ecfbc.zip
pep8: fix style errors reported by pycodestyle 2.1.0
pycodestyle 2.1.0 is in Ubuntu zesty, and complained about the changes made here. Simple style changes. This makes 'make pep8' pass again when built in a zesty build system with proposed enabled.
Diffstat (limited to 'cloudinit/sources/DataSourceGCE.py')
-rw-r--r--cloudinit/sources/DataSourceGCE.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cloudinit/sources/DataSourceGCE.py b/cloudinit/sources/DataSourceGCE.py
index 6c12d703..5ed59559 100644
--- a/cloudinit/sources/DataSourceGCE.py
+++ b/cloudinit/sources/DataSourceGCE.py
@@ -156,6 +156,7 @@ class DataSourceGCE(sources.DataSource):
def region(self):
return self.availability_zone.rsplit('-', 1)[0]
+
# Used to match classes to dependencies
datasources = [
(DataSourceGCE, (sources.DEP_FILESYSTEM, sources.DEP_NETWORK)),