PEP8 cleanups. Add keyword arguments. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
22 lines
516 B
Python
22 lines
516 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('document_indexing', '0014_auto_20180823_2353'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='index',
|
|
name='document_types',
|
|
field=models.ManyToManyField(
|
|
related_name='indexes', to='documents.DocumentType',
|
|
verbose_name='Document types'
|
|
),
|
|
),
|
|
]
|