From 4196ac7730807301f11b399bac14d157a52db20d Mon Sep 17 00:00:00 2001 From: Awais Jibran Date: Thu, 16 Sep 2021 16:06:29 +0500 Subject: [PATCH] refactor: remove duplicate decorator (#28763) --- lms/djangoapps/instructor/views/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lms/djangoapps/instructor/views/api.py b/lms/djangoapps/instructor/views/api.py index e431e6b39c..fc2647ce3b 100644 --- a/lms/djangoapps/instructor/views/api.py +++ b/lms/djangoapps/instructor/views/api.py @@ -1576,7 +1576,6 @@ def get_student_enrollment_status(request, course_id): @require_POST @ensure_csrf_cookie @cache_control(no_cache=True, no_store=True, must_revalidate=True) -@common_exceptions_400 @require_course_permission(permissions.ENROLLMENT_REPORT) @require_post_params( unique_student_identifier="email or username of student for whom to get progress url"