fix: format

This commit is contained in:
Livio Bieri 2023-12-04 17:09:12 +01:00 committed by Christian Cueni
parent fb24ec24e4
commit 2c5643e929
3 changed files with 3 additions and 11 deletions

View File

@ -6,11 +6,7 @@ from rest_framework.test import APITestCase
from vbv_lernwelt.core.admin import User
from vbv_lernwelt.shop.const import VV_DE_PRODUCT_SKU
from vbv_lernwelt.shop.models import (
CheckoutInformation,
CheckoutState,
Product,
)
from vbv_lernwelt.shop.models import CheckoutInformation, CheckoutState, Product
from vbv_lernwelt.shop.services import InitTransactionException
USER_USERNAME = "testuser"

View File

@ -9,11 +9,7 @@ from vbv_lernwelt.course.consts import COURSE_VERSICHERUNGSVERMITTLERIN_ID
from vbv_lernwelt.course.creators.test_utils import create_course, create_course_session
from vbv_lernwelt.course.models import CourseSessionUser
from vbv_lernwelt.shop.const import VV_DE_PRODUCT_SKU
from vbv_lernwelt.shop.models import (
CheckoutInformation,
CheckoutState,
Product,
)
from vbv_lernwelt.shop.models import CheckoutInformation, CheckoutState, Product
def create_checkout_information(

View File

@ -6,8 +6,8 @@ from rest_framework.permissions import IsAuthenticated
from rest_framework.response import Response
from vbv_lernwelt.course.consts import (
COURSE_VERSICHERUNGSVERMITTLERIN_ID,
COURSE_VERSICHERUNGSVERMITTLERIN_FR_ID,
COURSE_VERSICHERUNGSVERMITTLERIN_ID,
COURSE_VERSICHERUNGSVERMITTLERIN_IT_ID,
)
from vbv_lernwelt.course.models import CourseSession, CourseSessionUser