1
0
Fork 0

linting W0107

check_celery had an invalid pass, replaced that with a log entry.
 
Signed-off-by: Corey Shields <cshields@gmail.com>
merge-requests/399/head
Corey Shields 2019-07-13 14:38:20 -04:00
parent 8b6410ba2c
commit a8a0dc4aa6
2 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,6 @@ disable=
R0914,
R0915,
R1705,
W0107,
W0110,
W0150,
W0201,

View File

@ -25,7 +25,7 @@ LOGGER = logging.getLogger('db')
@APP.task(task_ignore_result=False)
def check_celery():
"""Dummy celery task to check that everything runs smoothly."""
pass
LOGGER.info('check_celery has been triggered')
@APP.task