Format code using black
This commit is contained in:
parent
2ad0c8dbc7
commit
59136050fb
14 changed files with 809 additions and 413 deletions
|
|
@ -6,16 +6,21 @@ from django.db import migrations
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('photologue', '0001_initial'),
|
||||
("photologue", "0001_initial"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='gallery',
|
||||
options={'get_latest_by': 'date_start', 'ordering': ['-date_start'], 'verbose_name': 'gallery', 'verbose_name_plural': 'galleries'},
|
||||
name="gallery",
|
||||
options={
|
||||
"get_latest_by": "date_start",
|
||||
"ordering": ["-date_start"],
|
||||
"verbose_name": "gallery",
|
||||
"verbose_name_plural": "galleries",
|
||||
},
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='gallery',
|
||||
name='date_added',
|
||||
model_name="gallery",
|
||||
name="date_added",
|
||||
),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue