summaryrefslogtreecommitdiff
path: root/src/buildstream/plugins/elements/compose.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/plugins/elements/compose.py')
-rw-r--r--src/buildstream/plugins/elements/compose.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/buildstream/plugins/elements/compose.py b/src/buildstream/plugins/elements/compose.py
index 461320008..c54c317b0 100644
--- a/src/buildstream/plugins/elements/compose.py
+++ b/src/buildstream/plugins/elements/compose.py
@@ -102,9 +102,7 @@ class ComposeElement(Element):
with self.timed_activity("Computing split", silent_nested=True):
for dep in self.dependencies(Scope.BUILD):
files = dep.compute_manifest(
- include=self.include,
- exclude=self.exclude,
- orphans=self.include_orphans,
+ include=self.include, exclude=self.exclude, orphans=self.include_orphans,
)
manifest.update(files)
@@ -186,13 +184,9 @@ class ComposeElement(Element):
def import_filter(path):
return path in manifest
- with self.timed_activity(
- "Creating composition", detail=detail, silent_nested=True
- ):
+ with self.timed_activity("Creating composition", detail=detail, silent_nested=True):
self.info("Composing {} files".format(len(manifest)))
- installdir.import_files(
- vbasedir, filter_callback=import_filter, can_link=True
- )
+ installdir.import_files(vbasedir, filter_callback=import_filter, can_link=True)
# And we're done
return os.path.join(os.sep, "buildstream", "install")