From 0215424d7980b46369c95fabf46a89f57c940e0d Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sun, 15 Sep 2024 17:00:55 +0100 Subject: Sorting imports only --- pyblackbird_cc/payments/tests/test_models.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pyblackbird_cc/payments/tests') 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() -- cgit v1.2.3