Skip to content

Commit

Permalink
Small py2 fix for Pipelines notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jan 28, 2019
1 parent dcb8b42 commit 53b96ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/user_guide/Pipelines.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"\n",
" b = param.Number(default=5, bounds=(0, 10))\n",
" \n",
" @param.output(c=param.Number, d=param.Number)\n",
" @param.output(('c', param.Number), ('d', param.Number))\n",
" def output(self):\n",
" return self.a * self.b, self.a ** self.b\n",
" \n",
Expand Down

0 comments on commit 53b96ee

Please sign in to comment.