lister/tasks: Standardize return statements
The following commit adapts the return statements from both lister and their associated tasks. This standardizes on what other modules (e.g. both dvcs and package loaders) do.
This commit is contained in:
parent
ff7fdf24db
commit
4a9608f31c
15 changed files with 42 additions and 21 deletions
|
@ -9,8 +9,8 @@ from .lister import GNULister
|
|||
|
||||
@shared_task(name=__name__ + '.GNUListerTask')
|
||||
def list_gnu_full(**lister_args):
|
||||
'List lister for the GNU source code archive'
|
||||
GNULister(**lister_args).run()
|
||||
"""List lister for the GNU source code archive"""
|
||||
return GNULister(**lister_args).run()
|
||||
|
||||
|
||||
@shared_task(name=__name__ + '.ping')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue