diff --git a/lms/djangoapps/certificates/apps.py b/lms/djangoapps/certificates/apps.py index 50e5442c28..f28bfa63a0 100644 --- a/lms/djangoapps/certificates/apps.py +++ b/lms/djangoapps/certificates/apps.py @@ -23,6 +23,7 @@ class CertificatesConfig(AppConfig): # Can't import models at module level in AppConfigs, and models get # included from the signal handlers from lms.djangoapps.certificates import signals # pylint: disable=unused-import + from lms.djangoapps.certificates import handlers # pylint: disable=unused-import if settings.FEATURES.get('ENABLE_SPECIAL_EXAMS'): from lms.djangoapps.certificates.services import CertificateService set_runtime_service('certificates', CertificateService())