diff options
author | Matthew Lemon <y@yulqen.org> | 2025-01-07 22:01:44 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2025-01-07 22:01:44 +0000 |
commit | ba381a9caf9ce7e6eb5731b340c4d208b44c2ca7 (patch) | |
tree | 89abdfa1f5937573596b1d852e7803f0ad3087df /alphabetlearning/payments/models.py | |
parent | ed81f85afabf7d91a9badcd38865d43af77f483a (diff) |
wip: sorting out tests and factories
Diffstat (limited to '')
-rw-r--r-- | alphabetlearning/payments/models.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/alphabetlearning/payments/models.py b/alphabetlearning/payments/models.py index 44c8597..12c82f4 100644 --- a/alphabetlearning/payments/models.py +++ b/alphabetlearning/payments/models.py @@ -1,13 +1,12 @@ import uuid from datetime import timedelta +from alphabetlearning.resources.models import Resource from django.conf import settings from django.core.exceptions import ValidationError from django.db import models from django.utils import timezone -from alphabetlearning.resources.models import Resource - class EmailVerification(models.Model): email = models.EmailField(unique=True) |