|
6 | 6 | class Migration(migrations.Migration): |
7 | 7 |
|
8 | 8 | dependencies = [ |
9 | | - ('base', '0024_alter_formpage_body_alter_gallerypage_body_and_more'), |
| 9 | + ("base", "0024_alter_formpage_body_alter_gallerypage_body_and_more"), |
10 | 10 | ] |
11 | 11 |
|
12 | 12 | operations = [ |
13 | 13 | migrations.AlterField( |
14 | | - model_name='homepage', |
15 | | - name='featured_section_1_title', |
16 | | - field=models.CharField(blank=True, help_text='Title to display above the featured section 1', max_length=255), |
| 14 | + model_name="homepage", |
| 15 | + name="featured_section_1_title", |
| 16 | + field=models.CharField( |
| 17 | + blank=True, |
| 18 | + help_text="Title to display above the featured section 1", |
| 19 | + max_length=255, |
| 20 | + ), |
17 | 21 | ), |
18 | 22 | migrations.AlterField( |
19 | | - model_name='homepage', |
20 | | - name='featured_section_2_title', |
21 | | - field=models.CharField(blank=True, help_text='Title to display above the featured section 2', max_length=255), |
| 23 | + model_name="homepage", |
| 24 | + name="featured_section_2_title", |
| 25 | + field=models.CharField( |
| 26 | + blank=True, |
| 27 | + help_text="Title to display above the featured section 2", |
| 28 | + max_length=255, |
| 29 | + ), |
22 | 30 | ), |
23 | 31 | migrations.AlterField( |
24 | | - model_name='homepage', |
25 | | - name='featured_section_3_title', |
26 | | - field=models.CharField(blank=True, help_text='Title to display above the featured section 3', max_length=255), |
| 32 | + model_name="homepage", |
| 33 | + name="featured_section_3_title", |
| 34 | + field=models.CharField( |
| 35 | + blank=True, |
| 36 | + help_text="Title to display above the featured section 3", |
| 37 | + max_length=255, |
| 38 | + ), |
27 | 39 | ), |
28 | 40 | ] |
0 commit comments