Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
viggo-devries committed Jan 2, 2024
1 parent f10c6a5 commit b99948b
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions tests/resources/test_catalogue.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,6 @@

from oscar_odin import resources

from decimal import Decimal as D

from django.test import TestCase
from oscar.core.loading import get_model

from oscar_odin.mappings.catalogue import products_to_db
from oscar_odin.resources.catalogue import (
Product as ProductResource,
Image as ImageResource,
ProductClass as ProductClassResource,
Category as CategoryResource,
ProductAttributeValue as ProductAttributeValueResource,
)

Product = get_model("catalogue", "Product")
ProductClass = get_model("catalogue", "ProductClass")
ProductAttribute = get_model("catalogue", "ProductAttribute")
ProductImage = get_model("catalogue", "ProductImage")
Category = get_model("catalogue", "Category")
Partner = get_model("partner", "Partner")
ProductAttributeValue = get_model("catalogue", "ProductAttributeValue")


class TestProduct(TestCase):
def test_init(self):
Expand Down

0 comments on commit b99948b

Please sign in to comment.