Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
ff18b7d0
Commit
ff18b7d0
authored
Nov 30, 2014
by
Sarina Canelake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/pylint: disable=W0611/pylint: disable=unused-import/
parent
d406261e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
cms/envs/common.py
+1
-1
common/djangoapps/student/helpers.py
+1
-1
lms/envs/common.py
+1
-1
No files found.
cms/envs/common.py
View file @
ff18b7d0
...
...
@@ -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
...
...
common/djangoapps/student/helpers.py
View file @
ff18b7d0
...
...
@@ -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
)
...
...
lms/envs/common.py
View file @
ff18b7d0
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment