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
416f7090
Commit
416f7090
authored
Feb 15, 2015
by
stv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Pylint: C0112(empty-docstring)
parent
75aaf0d4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
12 deletions
+0
-12
common/lib/capa/capa/inputtypes.py
+0
-8
lms/djangoapps/licenses/management/commands/generate_serial_numbers.py
+0
-2
lms/djangoapps/licenses/management/commands/import_serial_numbers.py
+0
-2
No files found.
common/lib/capa/capa/inputtypes.py
View file @
416f7090
...
...
@@ -1016,8 +1016,6 @@ class Schematic(InputTypeBase):
]
def
_extra_context
(
self
):
"""
"""
context
=
{
'setup_script'
:
'{static_url}js/capa/schematicinput.js'
.
format
(
static_url
=
self
.
capa_system
.
STATIC_URL
),
...
...
@@ -1410,8 +1408,6 @@ class EditAMoleculeInput(InputTypeBase):
Attribute
(
'missing'
,
None
)]
def
_extra_context
(
self
):
"""
"""
context
=
{
'applet_loader'
:
'{static_url}js/capa/editamolecule.js'
.
format
(
static_url
=
self
.
capa_system
.
STATIC_URL
),
...
...
@@ -1446,8 +1442,6 @@ class DesignProtein2dInput(InputTypeBase):
]
def
_extra_context
(
self
):
"""
"""
context
=
{
'applet_loader'
:
'{static_url}js/capa/design-protein-2d.js'
.
format
(
static_url
=
self
.
capa_system
.
STATIC_URL
),
...
...
@@ -1482,8 +1476,6 @@ class EditAGeneInput(InputTypeBase):
]
def
_extra_context
(
self
):
"""
"""
context
=
{
'applet_loader'
:
'{static_url}js/capa/edit-a-gene.js'
.
format
(
static_url
=
self
.
capa_system
.
STATIC_URL
),
...
...
lms/djangoapps/licenses/management/commands/generate_serial_numbers.py
View file @
416f7090
...
...
@@ -24,8 +24,6 @@ class Command(BaseCommand):
args
=
"course_id software_id count"
def
handle
(
self
,
*
args
,
**
options
):
"""
"""
course_id
,
software_name
,
count
=
self
.
_parse_arguments
(
args
)
software
,
_
=
CourseSoftware
.
objects
.
get_or_create
(
course_id
=
course_id
,
...
...
lms/djangoapps/licenses/management/commands/import_serial_numbers.py
View file @
416f7090
...
...
@@ -24,8 +24,6 @@ class Command(BaseCommand):
args
=
"course_id software_id serial_file"
def
handle
(
self
,
*
args
,
**
options
):
"""
"""
course_id
,
software_name
,
filename
=
self
.
_parse_arguments
(
args
)
software
,
_
=
CourseSoftware
.
objects
.
get_or_create
(
course_id
=
course_id
,
...
...
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