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:
Antoine R. Dumont (@ardumont) 2019-12-02 15:49:38 +01:00
parent ff7fdf24db
commit 4a9608f31c
No known key found for this signature in database
GPG key ID: 52E2E9840D10C3B8
15 changed files with 42 additions and 21 deletions

View file

@ -10,7 +10,7 @@ from .lister import PyPILister
@shared_task(name=__name__ + '.PyPIListerTask')
def list_pypi(**lister_args):
'Full update of the PyPI (python) registry'
PyPILister(**lister_args).run()
return PyPILister(**lister_args).run()
@shared_task(name=__name__ + '.ping')