Skip to content

Commit 001c852

Browse files
committed
fix: pylint issue
1 parent 3d631f6 commit 001c852

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lms/djangoapps/course_home_api/progress

lms/djangoapps/course_home_api/progress/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def _visible_section_scores(self, course_grade):
191191
visible_chapters.append({**chapter, "sections": filtered_sections})
192192
return visible_chapters
193193

194-
def get(self, request, *args, **kwargs):
194+
def get(self, request, *args, **kwargs): # pylint: disable=too-many-statements
195195
course_key_string = kwargs.get('course_key_string')
196196
course_key = CourseKey.from_string(course_key_string)
197197
student_id = kwargs.get('student_id')

0 commit comments

Comments
 (0)