PEP8 cleanups. Add keyword arguments. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
26 lines
679 B
Python
26 lines
679 B
Python
from __future__ import unicode_literals
|
|
|
|
import mayan.apps.common.models
|
|
import django.core.files.storage
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('common', '0009_auto_20180402_0339'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='shareduploadedfile',
|
|
name='file',
|
|
field=models.FileField(
|
|
storage=django.core.files.storage.FileSystemStorage(
|
|
location=b'mayan/media/shared_files'
|
|
), upload_to=mayan.apps.common.models.upload_to,
|
|
verbose_name='File'
|
|
),
|
|
),
|
|
]
|