chore: blacked

This commit is contained in:
2025-01-03 14:21:21 +01:00
parent 863a04737c
commit 7d021ebaa0
4 changed files with 21 additions and 19 deletions
+2 -2
View File
@@ -90,13 +90,13 @@ def create_order_from_cart(
email="",
):
order = Order.objects.create(
billing_address=f'{billing_address_full_name} {billing_address_address}',
billing_address=f"{billing_address_full_name} {billing_address_address}",
billing_city=billing_address_town,
billing_state=billing_address_state,
billing_country=billing_address_country,
billing_zip=billing_address_zip,
contact_phone=shipping_address_phone,
shipping_address=f'{shipping_address_address} {shipping_address_full_name}',
shipping_address=f"{shipping_address_address} {shipping_address_full_name}",
shipping_city=shipping_address_town,
shipping_state=shipping_address_state,
shipping_country=shipping_address_country,