From ff18b7d01a71466894c875c5fbce1319be5c1d24 Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Sun, 30 Nov 2014 15:08:24 -0500 Subject: [PATCH] s/pylint: disable=W0611/pylint: disable=unused-import/ --- cms/envs/common.py | 2 +- common/djangoapps/student/helpers.py | 2 +- lms/envs/common.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index 5b23f751c2..4055c5c944 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -22,7 +22,7 @@ Longer TODO: # We intentionally define lots of variables that aren't used, and # 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 os diff --git a/common/djangoapps/student/helpers.py b/common/djangoapps/student/helpers.py index 23bba3d0dd..32ed5f9363 100644 --- a/common/djangoapps/student/helpers.py +++ b/common/djangoapps/student/helpers.py @@ -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 ) diff --git a/lms/envs/common.py b/lms/envs/common.py index e4053e7bb7..fda0901581 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -22,7 +22,7 @@ Longer TODO: # We intentionally define lots of variables that aren't used, and # 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 os