Skip to content

Commit

Permalink
feat: remove deprecated coaching
Browse files Browse the repository at this point in the history
linting, fixing pr comment
  • Loading branch information
deborahgu committed Oct 18, 2023
1 parent 5c3237c commit b2f2e22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lms/djangoapps/course_home_api/progress/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class ProgressTabView(RetrieveAPIView):
serializer_class = ProgressTabSerializer

def _get_student_user(self, request, course_key, student_id, is_staff):
"""Gets the student User object, either from masquerading, or normal actual request"""
"""Gets the student User object, either from coaching, masquerading, or normal actual request"""
if student_id:
try:
student_id = int(student_id)
Expand Down
6 changes: 3 additions & 3 deletions openedx/core/djangoapps/external_user_ids/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class ExternalIdType(TimeStampedModel):
.. no_pii:
"""

CALIPER = "caliper"
XAPI = "xapi"
LTI = "lti"
CALIPER = 'caliper'
XAPI = 'xapi'
LTI = 'lti'

name = models.CharField(max_length=32, blank=False, unique=True, db_index=True)
description = models.TextField()
Expand Down

0 comments on commit b2f2e22

Please sign in to comment.