PEP8 cleanups. Add keyword arguments. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
22 lines
487 B
Python
22 lines
487 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('document_indexing', '0003_auto_20150708_0101'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='index',
|
|
name='label',
|
|
field=models.CharField(
|
|
unique=True, max_length=128, verbose_name='Label'
|
|
),
|
|
preserve_default=True,
|
|
),
|
|
]
|