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

This commit is contained in:
Sarina Canelake
2014-11-30 15:08:24 -05:00
parent d406261e4b
commit ff18b7d01a
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ from django.conf import settings
from django.core.urlresolvers import reverse
from opaque_keys.edx.keys import CourseKey
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,
is_enabled as third_party_auth_enabled
)