mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-10 11:59:23 +00:00
All: Apply Black coding rules
This commit is contained in:
@ -6,27 +6,13 @@ from django.db import migrations, models
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0006_auto_20161108_1703'),
|
||||
]
|
||||
dependencies = [("core", "0006_auto_20161108_1703")]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Album',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('core.sithfile',),
|
||||
name="Album", fields=[], options={"proxy": True}, bases=("core.sithfile",)
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Picture',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'proxy': True,
|
||||
},
|
||||
bases=('core.sithfile',),
|
||||
name="Picture", fields=[], options={"proxy": True}, bases=("core.sithfile",)
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user