Run black over entire codebase
This commit is contained in:
@ -7,14 +7,18 @@ from django.db import migrations, models
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('map', '0063_auto_20180525_0052'),
|
||||
]
|
||||
dependencies = [("map", "0063_auto_20180525_0052")]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='casestudy',
|
||||
name='land_ownership_details',
|
||||
field=models.CharField(blank=True, help_text='Please specify details about land ownership', max_length=256, null=True, verbose_name='Land ownership/tenure details'),
|
||||
),
|
||||
model_name="casestudy",
|
||||
name="land_ownership_details",
|
||||
field=models.CharField(
|
||||
blank=True,
|
||||
help_text="Please specify details about land ownership",
|
||||
max_length=256,
|
||||
null=True,
|
||||
verbose_name="Land ownership/tenure details",
|
||||
),
|
||||
)
|
||||
]
|
||||
|
Reference in New Issue
Block a user