From cfa816c520e277b487a464211977e2305cd11b0b Mon Sep 17 00:00:00 2001 From: KyryloKireiev Date: Thu, 4 Jul 2024 09:39:39 +0300 Subject: [PATCH] fix: [AXM-506] Try to fix pipelines --- lms/djangoapps/mobile_api/course_info/serializers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/mobile_api/course_info/serializers.py b/lms/djangoapps/mobile_api/course_info/serializers.py index 40b3cc8ae61a..69bed47b03fc 100644 --- a/lms/djangoapps/mobile_api/course_info/serializers.py +++ b/lms/djangoapps/mobile_api/course_info/serializers.py @@ -80,7 +80,7 @@ def get_course_modes(self, course_overview): def get_course_progress(self, obj: CourseOverview) -> Dict[str, int]: """ - Gets course progress calculated by course assignments. + Gets course progress calculated by course completed assignments. """ return get_assignments_completions(obj.id, self.context.get('user'))