We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2415b9 commit 2cb16f6Copy full SHA for 2cb16f6
1 file changed
docs/guide.md
@@ -318,9 +318,9 @@ class Pipeline(object):
318
self.digestion = DigestionStage()
319
320
def run(self):
321
- print(self.ingestion.run())
322
- print(self.digestion.run())
323
- return 'Pipeline complete'
+ ingestion_output = self.ingestion.run()
+ digestion_output = self.digestion.run()
+ return [ingestion_output, digestion_output]
324
325
if __name__ == '__main__':
326
fire.Fire(Pipeline)
0 commit comments