diff --git a/.pylintrc b/.pylintrc index f50164f..5ae892a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -17,7 +17,6 @@ disable= R0914, R0915, R1705, - W0107, W0110, W0150, W0201, diff --git a/db/base/tasks.py b/db/base/tasks.py index bd344d6..a65eb77 100644 --- a/db/base/tasks.py +++ b/db/base/tasks.py @@ -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