From 25c5a45b68a8abb5c25cf90846757541bdeb1434 Mon Sep 17 00:00:00 2001 From: Wei-Chung Liao Date: Fri, 23 Apr 2021 15:12:48 -0400 Subject: [PATCH] Modify the grouping example to fit the output --- docs/guide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide.md b/docs/guide.md index d5da3212..cb2c07db 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -318,9 +318,9 @@ class Pipeline(object): self.digestion = DigestionStage() def run(self): - self.ingestion.run() - self.digestion.run() - return 'Pipeline complete' + ingestion_output = self.ingestion.run() + digestion_output = self.digestion.run() + return [ingestion_output, digestion_output] if __name__ == '__main__': fire.Fire(Pipeline)