Skip to content

Commit

Permalink
Merge d0ed527 into 9985627
Browse files Browse the repository at this point in the history
  • Loading branch information
floer32 committed May 21, 2019
2 parents 9985627 + d0ed527 commit 3d8676e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/samples/task_reusable.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@

def gen_many_tasks():
""" first line of docstring becomes doc kwarg """
yield {'basename': 't1',
'actions': ['echo t1']}
yield {'basename': 't2',
'actions': ['echo t2']}
'actions': ['echo t2'],
'doc': "t2 override of doc kwarg"}

def task_all():
yield gen_many_tasks()

0 comments on commit 3d8676e

Please sign in to comment.