summaryrefslogtreecommitdiff
path: root/buildstream/_metasource.py
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-12-10 14:38:10 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-12-10 15:11:43 +0900
commit9b153d3d63de737c59b781bd1b4bda1e63c95714 (patch)
tree570b0b96e1cccc19e414af3a083875a3a12b14ff /buildstream/_metasource.py
parent38dd75ca8bef1aea5a6927d229326d00a3c2d00c (diff)
downloadbuildstream-9b153d3d63de737c59b781bd1b4bda1e63c95714.tar.gz
pep8 fixes in _metasource.py
Diffstat (limited to 'buildstream/_metasource.py')
-rw-r--r--buildstream/_metasource.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/buildstream/_metasource.py b/buildstream/_metasource.py
index d4396614e..5dd3d50e0 100644
--- a/buildstream/_metasource.py
+++ b/buildstream/_metasource.py
@@ -18,6 +18,7 @@
# Authors:
# Tristan Van Berkom <tristan.vanberkom@codethink.co.uk>
+
class MetaSource():
# MetaSource()
@@ -29,12 +30,12 @@ class MetaSource():
# config: The configuration data for the source
# origin_node: The original YAML dictionary node defining this source
# origin_toplevel: The toplevel YAML loaded from the original file
- # origin_filename: The filename in which the original node was loaded from
+ # origin_filename: The filename in which the node was loaded from
#
- def __init__(self, kind, config, origin_node, origin_toplevel, origin_filename):
+ def __init__(self, kind, config, origin_node, origin_toplevel,
+ origin_filename):
self.kind = kind
self.config = config
self.origin_node = origin_node
self.origin_toplevel = origin_toplevel
self.origin_filename = origin_filename
-