feat: remove deprecated coaching

linting, fixing pr comment
This commit is contained in:
Deborah Kaplan
2023-10-18 14:48:34 +00:00
parent 5c3237c389
commit b2f2e22b8a
2 changed files with 4 additions and 4 deletions

View File

@@ -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)

View File

@@ -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()