From 97fb8bcf747d95cca04629245f3c435ee8797b5e Mon Sep 17 00:00:00 2001 From: Alison Langston <46360176+alangsto@users.noreply.github.com> Date: Wed, 25 Sep 2024 14:56:25 -0400 Subject: [PATCH] fix: fix typo in import path (#225) --- edx_name_affirmation/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edx_name_affirmation/models.py b/edx_name_affirmation/models.py index bf4ef2a..3cf9b7a 100644 --- a/edx_name_affirmation/models.py +++ b/edx_name_affirmation/models.py @@ -14,7 +14,7 @@ try: from lms.djangoapps.verify_student.models import SoftwareSecurePhotoVerification - from lms.djangoapps.verify_studnet.models import VerificationAttempt as PlatformVerificationAttempt + from lms.djangoapps.verify_student.models import VerificationAttempt as PlatformVerificationAttempt except ImportError: SoftwareSecurePhotoVerification = None PlatformVerificationAttempt = None