PEP8 cleanups. Add keyword arguments. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
22 lines
481 B
Python
22 lines
481 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('documents', '0036_auto_20161222_0534'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='document',
|
|
name='language',
|
|
field=models.CharField(
|
|
blank=True, default='eng', max_length=8,
|
|
verbose_name='Language'
|
|
),
|
|
),
|
|
]
|