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
e7e9a163
Commit
e7e9a163
authored
Feb 23, 2015
by
stv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Pylint: W0403(relative-import)
parent
268cb46d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
lms/djangoapps/django_comment_client/tests/mock_cs_server/test_mock_cs_server.py
+1
-1
lms/djangoapps/open_ended_grading/views.py
+1
-1
lms/envs/dev_with_worker.py
+1
-1
lms/envs/devgroups/portal.py
+1
-1
lms/lib/comment_client/comment.py
+2
-2
lms/lib/comment_client/commentable.py
+2
-2
No files found.
lms/djangoapps/django_comment_client/tests/mock_cs_server/test_mock_cs_server.py
View file @
e7e9a163
...
...
@@ -2,7 +2,7 @@ import unittest
import
threading
import
json
import
urllib2
from
mock_cs_server
import
MockCommentServiceServer
from
django_comment_client.tests.mock_cs_server.
mock_cs_server
import
MockCommentServiceServer
from
nose.plugins.skip
import
SkipTest
...
...
lms/djangoapps/open_ended_grading/views.py
View file @
e7e9a163
...
...
@@ -10,7 +10,7 @@ from xmodule.open_ended_grading_classes.grading_service_module import GradingSer
import
json
from
student.models
import
unique_id_for_user
import
open_ended_notifications
from
open_ended_grading
import
open_ended_notifications
from
xmodule.modulestore.django
import
modulestore
from
xmodule.modulestore
import
search
...
...
lms/envs/dev_with_worker.py
View file @
e7e9a163
...
...
@@ -12,7 +12,7 @@ django_admin.py celery worker
# want to import all variables from base settings files
# pylint: disable=wildcard-import, unused-wildcard-import
from
dev
import
*
from
lms.envs.
dev
import
*
################################# CELERY ######################################
...
...
lms/envs/devgroups/portal.py
View file @
e7e9a163
...
...
@@ -7,7 +7,7 @@ get shared sessions)
# want to import all variables from base settings files
# pylint: disable=wildcard-import, unused-wildcard-import
from
courses
import
*
from
lms.envs.devgroups.
courses
import
*
# Move this to a shared file later:
for
class_id
,
db_name
in
CLASSES_TO_DBS
.
items
():
...
...
lms/lib/comment_client/comment.py
View file @
e7e9a163
from
.utils
import
CommentClientRequestError
,
perform_request
from
.thread
import
Thread
,
_url_for_flag_abuse_thread
,
_url_for_unflag_abuse_thread
import
models
import
settings
from
lms.lib.comment_client
import
models
from
lms.lib.comment_client
import
settings
class
Comment
(
models
.
Model
):
...
...
lms/lib/comment_client/commentable.py
View file @
e7e9a163
"""Provides base Commentable model class"""
import
models
import
settings
from
lms.lib.comment_client
import
models
from
lms.lib.comment_client
import
settings
class
Commentable
(
models
.
Model
):
...
...
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