Fix Pylint: C0112(empty-docstring)
This commit is contained in:
@@ -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),
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user