Run black over entire codebase

This commit is contained in:
2019-08-19 23:37:32 +02:00
parent fc7a9621a7
commit e3e3f6d5db
112 changed files with 8240 additions and 3214 deletions

View File

@ -7,14 +7,10 @@ from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('map', '0001_initial'),
]
dependencies = [("map", "0001_initial")]
operations = [
migrations.RenameField(
model_name='casestudy',
old_name='location',
new_name='geom',
),
model_name="casestudy", old_name="location", new_name="geom"
)
]