From bfe6ba5daf238eda22d58d59bdb6d2456ee2d8aa Mon Sep 17 00:00:00 2001 From: Varsha Menon Date: Tue, 12 Dec 2023 09:22:26 -0500 Subject: [PATCH] fix: add import statement for handlers --- lms/djangoapps/certificates/apps.py | 1 + 1 file changed, 1 insertion(+) 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())