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
3c364193
Commit
3c364193
authored
Nov 30, 2014
by
Sarina Canelake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/pylint: disable=W0104/pylint: disable=pointless-statement/
parent
52093520
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
cms/startup.py
+1
-1
common/lib/calc/calc/calc.py
+1
-1
lms/startup.py
+1
-1
No files found.
cms/startup.py
View file @
3c364193
...
...
@@ -5,7 +5,7 @@ Module with code executed during Studio startup
from
django.conf
import
settings
# Force settings to run so that the python path is modified
settings
.
INSTALLED_APPS
# pylint: disable=
W0104
settings
.
INSTALLED_APPS
# pylint: disable=
pointless-statement
from
django_startup
import
autostartup
from
monkey_patch
import
django_utils_translation
...
...
common/lib/calc/calc/calc.py
View file @
3c364193
...
...
@@ -356,7 +356,7 @@ class ParseAugmenter(object):
sum_term
=
Group
(
sum_term
)(
"sum"
)
# Finish the recursion.
expr
<<
sum_term
# pylint: disable=
W0104
expr
<<
sum_term
# pylint: disable=
pointless-statement
self
.
tree
=
(
expr
+
stringEnd
)
.
parseString
(
self
.
math_expr
)[
0
]
def
reduce_tree
(
self
,
handle_actions
,
terminal_converter
=
None
):
...
...
lms/startup.py
View file @
3c364193
...
...
@@ -5,7 +5,7 @@ Module for code that should run during LMS startup
from
django.conf
import
settings
# Force settings to run so that the python path is modified
settings
.
INSTALLED_APPS
# pylint: disable=
W0104
settings
.
INSTALLED_APPS
# pylint: disable=
pointless-statement
from
django_startup
import
autostartup
import
edxmako
...
...
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