Commit ff18b7d0 by Sarina Canelake

s/pylint: disable=W0611/pylint: disable=unused-import/

parent d406261e
...@@ -22,7 +22,7 @@ Longer TODO: ...@@ -22,7 +22,7 @@ Longer TODO:
# We intentionally define lots of variables that aren't used, and # We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files # want to import all variables from base settings files
# pylint: disable=wildcard-import, W0611, unused-wildcard-import # pylint: disable=wildcard-import, unused-import, unused-wildcard-import
import imp import imp
import os import os
......
...@@ -5,7 +5,7 @@ from django.conf import settings ...@@ -5,7 +5,7 @@ from django.conf import settings
from django.core.urlresolvers import reverse from django.core.urlresolvers import reverse
from opaque_keys.edx.keys import CourseKey from opaque_keys.edx.keys import CourseKey
from course_modes.models import CourseMode from course_modes.models import CourseMode
from third_party_auth import ( # pylint: disable=W0611 from third_party_auth import ( # pylint: disable=unused-import
pipeline, provider, pipeline, provider,
is_enabled as third_party_auth_enabled is_enabled as third_party_auth_enabled
) )
......
...@@ -22,7 +22,7 @@ Longer TODO: ...@@ -22,7 +22,7 @@ Longer TODO:
# We intentionally define lots of variables that aren't used, and # We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files # want to import all variables from base settings files
# pylint: disable=wildcard-import, W0611, unused-wildcard-import, invalid-name # pylint: disable=wildcard-import, unused-import, unused-wildcard-import, invalid-name
import sys import sys
import os import os
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment