fix: format

This commit is contained in:
Livio Bieri 2023-11-17 14:59:09 +01:00 committed by Christian Cueni
parent 083af9e308
commit 93c9f73a46
1 changed files with 6 additions and 5 deletions

View File

@ -4,15 +4,16 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('shop', '0008_auto_20231117_0905'),
("shop", "0008_auto_20231117_0905"),
]
operations = [
migrations.AlterField(
model_name='checkoutinformation',
name='product_price',
field=models.IntegerField(help_text='The total price of the product in centimes -> 1000 = 10.00 CHF'),
model_name="checkoutinformation",
name="product_price",
field=models.IntegerField(
help_text="The total price of the product in centimes -> 1000 = 10.00 CHF"
),
),
]