Skip to content

Commit

Permalink
Update guide.md (#387)
Browse files Browse the repository at this point in the history
Should either print the returned value or join and return. Otherwise, the output in the example won't get generated.
  • Loading branch information
khodadadp committed Dec 9, 2022
1 parent 82e2d87 commit e5b33f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ class Pipeline(object):
self.digestion = DigestionStage()

def run(self):
self.ingestion.run()
self.digestion.run()
print(self.ingestion.run())
print(self.digestion.run())
return 'Pipeline complete'

if __name__ == '__main__':
Expand Down

0 comments on commit e5b33f6

Please sign in to comment.