We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 56ff22f + ec6bc59 commit d39de7fCopy full SHA for d39de7f
utils/swift_build_support/swift_build_support/productpipeline_list_builder.py
@@ -141,7 +141,7 @@ def infer(self):
141
142
# Filter out any of the pipelines that before inference were not
143
# selected.
144
- enabled_pipeline = filter(lambda x: x is not None, pipeline)
+ enabled_pipeline = [p for p in pipeline if p is not None]
145
146
if self.args.verbose_build:
147
print("-- Build Graph Inference --")
0 commit comments