Skip to content

Commit

Permalink
Fix initialization of StagedTaskCollection subclasses in examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardomurri committed Nov 22, 2016
1 parent f3c7449 commit beb44c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Binary file modified docs/programmers/tutorials/workflows/part08.pdf
Binary file not shown.
2 changes: 2 additions & 0 deletions docs/programmers/tutorials/workflows/part08.tex
Expand Up @@ -172,6 +172,7 @@
\begin{lstlisting}
class Pipeline~\HL{(StagedTaskCollection)}~:
def __init__(self, image):
StagedTaskCollection.__init__(self)
self.source = image
def stage0(self):
Expand Down Expand Up @@ -208,6 +209,7 @@
\begin{lstlisting}
class Pipeline(StagedTaskCollection):
def __init__(self, image):
StagedTaskCollection.__init__(self)
self.source = image
def ~\HL{stage0(self)}~:
Expand Down

0 comments on commit beb44c3

Please sign in to comment.