Style fixes suggested by pylint.

This commit is contained in:
Adam Kelly
2020-04-22 14:53:22 +01:00
parent 894f76f843
commit fba78d7a0e
26 changed files with 37 additions and 73 deletions

View File

@ -1,6 +1,6 @@
''' background tasks '''
from celery import Celery
import os
from celery import Celery
from fedireads import settings
@ -10,5 +10,3 @@ app = Celery(
'tasks',
broker=settings.CELERY_BROKER,
)