Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
specialunderwear committed Mar 18, 2024
1 parent a561162 commit 68c7f4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions oscarapi/tests/unit/testproduct.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ def test_product_attributes(self):
self.assertEqual(attributes_by_name["datetime"], "2018-01-02T10:45:00Z")
self.assertIsInstance(attributes_by_name["file"], str)
self.assertEqual(
attributes_by_name["file"], "http://testserver/media/images/products/2018/01/sony-xa50ES.pdf"
attributes_by_name["file"],
"http://testserver/media/images/products/2018/01/sony-xa50ES.pdf",
)
self.assertIsInstance(attributes_by_name["float"], float)
self.assertEqual(attributes_by_name["float"], 3.2)
Expand All @@ -247,7 +248,8 @@ def test_product_attributes(self):
)
self.assertIsInstance(attributes_by_name["image"], str)
self.assertEqual(
attributes_by_name["image"], "http://testserver/media/images/products/2018/01/IMG_3777.JPG"
attributes_by_name["image"],
"http://testserver/media/images/products/2018/01/IMG_3777.JPG",
)
self.assertIsInstance(attributes_by_name["integer"], int)
self.assertEqual(attributes_by_name["integer"], 7)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

__version__ = "3.2.4"
__version__ = "3.2.6"

setup(
# package name in pypi
Expand Down

0 comments on commit 68c7f4c

Please sign in to comment.