Add exceptions for unused imports in settings files

This commit is contained in:
Calen Pennington
2013-05-21 13:07:04 -04:00
parent d5d99ef60f
commit cfe220a746
2 changed files with 8 additions and 0 deletions

View File

@@ -8,6 +8,10 @@ The worker can be executed using:
django_admin.py celery worker
"""
# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
# pylint: disable=W0401, W0614
from dev import *
################################# CELERY ######################################

View File

@@ -8,6 +8,10 @@ The worker can be executed using:
django_admin.py celery worker
"""
# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
# pylint: disable=W0401, W0614
from dev import *
################################# CELERY ######################################