1
0
Fork 0

fix(api): make sure each pipeline has its own list of stages

This commit is contained in:
Sean Sube 2023-01-29 00:25:49 -06:00
parent 7083505483
commit b1ba09af3e
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class ChainPipeline:
'''
Create a new pipeline that will run the given stages.
'''
self.stages = stages
self.stages = list(stages)
def append(self, stage: PipelineStage):
'''