diff --git a/lms/djangoapps/courseware/plugins.py b/lms/djangoapps/courseware/plugins.py index 6c4eab5bfd..00249864c2 100644 --- a/lms/djangoapps/courseware/plugins.py +++ b/lms/djangoapps/courseware/plugins.py @@ -1,5 +1,4 @@ """Course app config for courseware apps.""" -from cms.djangoapps.contentstore.utils import get_proctored_exam_settings_url from typing import Dict, Optional from django import urls @@ -8,11 +7,12 @@ from django.contrib.auth import get_user_model from django.utils.translation import ugettext_noop as _ from opaque_keys.edx.keys import CourseKey -from openedx.core.djangoapps.course_apps.toggles import proctoring_settings_modal_view_enabled from xmodule.modulestore.django import modulestore +from cms.djangoapps.contentstore.utils import get_proctored_exam_settings_url from openedx.core.djangoapps.content.course_overviews.models import CourseOverview from openedx.core.djangoapps.course_apps.plugins import CourseApp +from openedx.core.djangoapps.course_apps.toggles import proctoring_settings_modal_view_enabled from openedx.core.lib.courses import get_course_by_id User = get_user_model()