diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-15 17:00:55 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-15 17:00:55 +0100 |
commit | 0215424d7980b46369c95fabf46a89f57c940e0d (patch) | |
tree | 3bc5267a7247878e927759f206a6e99ca4ef8a2b /pyblackbird_cc/payments/tests/test_models.py | |
parent | 1cb215828f193ec4bac25f4dabb08c9aadc34ede (diff) |
Sorting imports only
Diffstat (limited to 'pyblackbird_cc/payments/tests/test_models.py')
-rw-r--r-- | pyblackbird_cc/payments/tests/test_models.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyblackbird_cc/payments/tests/test_models.py b/pyblackbird_cc/payments/tests/test_models.py index 4dab6e3..39e874f 100644 --- a/pyblackbird_cc/payments/tests/test_models.py +++ b/pyblackbird_cc/payments/tests/test_models.py @@ -1,11 +1,12 @@ -from django.core.exceptions import ValidationError import pytest from allauth.account.signals import user_signed_up from django.contrib.auth import get_user_model +from django.core.exceptions import ValidationError from django.db import IntegrityError from django.test import RequestFactory -from pyblackbird_cc.payments.models import ShoppingCart, Subscription +from pyblackbird_cc.payments.models import ShoppingCart +from pyblackbird_cc.payments.models import Subscription from pyblackbird_cc.payments.models import SubscriptionPlan User = get_user_model() |