core -- Apply black + isort to all files

This commit is contained in:
Aurélien Delobelle 2018-10-06 12:35:49 +02:00
parent 104e71dcf6
commit fdd2b35289
196 changed files with 10727 additions and 8365 deletions

View file

@ -1,22 +1,37 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('kfet', '0011_auto_20160807_1720'),
]
dependencies = [("kfet", "0011_auto_20160807_1720")]
operations = [
migrations.CreateModel(
name='Settings',
name="Settings",
fields=[
('id', models.AutoField(serialize=False, auto_created=True, primary_key=True, verbose_name='ID')),
('name', models.CharField(max_length=45)),
('value_decimal', models.DecimalField(null=True, max_digits=6, decimal_places=2, blank=True, default=None)),
(
"id",
models.AutoField(
serialize=False,
auto_created=True,
primary_key=True,
verbose_name="ID",
),
),
("name", models.CharField(max_length=45)),
(
"value_decimal",
models.DecimalField(
null=True,
max_digits=6,
decimal_places=2,
blank=True,
default=None,
),
),
],
),
)
]