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
e45994b2
Commit
e45994b2
authored
Nov 30, 2014
by
Sarina Canelake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/pylint: disable=R0924/pylint: disable=incomplete-protocol/
parent
90624ac4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
lms/djangoapps/bulk_email/forms.py
+2
-2
lms/djangoapps/dashboard/models.py
+1
-1
lms/djangoapps/dashboard/support.py
+1
-1
lms/djangoapps/survey/admin.py
+1
-1
No files found.
lms/djangoapps/bulk_email/forms.py
View file @
e45994b2
...
...
@@ -17,7 +17,7 @@ from opaque_keys.edx.locations import SlashSeparatedCourseKey
log
=
logging
.
getLogger
(
__name__
)
class
CourseEmailTemplateForm
(
forms
.
ModelForm
):
# pylint: disable=
R0924
class
CourseEmailTemplateForm
(
forms
.
ModelForm
):
# pylint: disable=
incomplete-protocol
"""Form providing validation of CourseEmail templates."""
name
=
forms
.
CharField
(
required
=
False
)
...
...
@@ -73,7 +73,7 @@ class CourseEmailTemplateForm(forms.ModelForm): # pylint: disable=R0924
return
name
class
CourseAuthorizationAdminForm
(
forms
.
ModelForm
):
# pylint: disable=
R0924
class
CourseAuthorizationAdminForm
(
forms
.
ModelForm
):
# pylint: disable=
incomplete-protocol
"""Input form for email enabling, allowing us to verify data."""
class
Meta
:
# pylint: disable=missing-docstring
...
...
lms/djangoapps/dashboard/models.py
View file @
e45994b2
...
...
@@ -6,7 +6,7 @@ from xmodule.modulestore.mongoengine_fields import CourseKeyField
class
CourseImportLog
(
mongoengine
.
Document
):
"""Mongoengine model for git log"""
# pylint: disable=
R0924
# pylint: disable=
incomplete-protocol
course_id
=
CourseKeyField
(
max_length
=
128
)
# NOTE: this location is not a Location object but a pathname
...
...
lms/djangoapps/dashboard/support.py
View file @
e45994b2
...
...
@@ -18,7 +18,7 @@ from opaque_keys.edx.locations import SlashSeparatedCourseKey
log
=
logging
.
getLogger
(
__name__
)
class
RefundForm
(
forms
.
Form
):
# pylint: disable=
R0924
class
RefundForm
(
forms
.
Form
):
# pylint: disable=
incomplete-protocol
"""
Form for manual refunds
"""
...
...
lms/djangoapps/survey/admin.py
View file @
e45994b2
...
...
@@ -7,7 +7,7 @@ from django.contrib import admin
from
survey.models
import
SurveyForm
class
SurveyFormAdminForm
(
forms
.
ModelForm
):
# pylint: disable=
R0924
class
SurveyFormAdminForm
(
forms
.
ModelForm
):
# pylint: disable=
incomplete-protocol
"""Form providing validation of SurveyForm content."""
class
Meta
:
# pylint: disable=missing-docstring
...
...
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