Skip to content

Commit 2cb16f6

Browse files
wchliaodbieber
andauthored
Modify the grouping example to fit the output (#334)
Co-authored-by: David Bieber <dbieber@google.com>
1 parent b2415b9 commit 2cb16f6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,9 @@ class Pipeline(object):
318318
self.digestion = DigestionStage()
319319

320320
def run(self):
321-
print(self.ingestion.run())
322-
print(self.digestion.run())
323-
return 'Pipeline complete'
321+
ingestion_output = self.ingestion.run()
322+
digestion_output = self.digestion.run()
323+
return [ingestion_output, digestion_output]
324324

325325
if __name__ == '__main__':
326326
fire.Fire(Pipeline)

0 commit comments

Comments
 (0)