Ran black on branc

This commit is contained in:
Griatch 2019-12-16 20:31:42 +01:00
parent 6effb6f456
commit 4ea6209123
230 changed files with 7108 additions and 2395 deletions

View file

@ -15,7 +15,10 @@ class Migration(migrations.Migration):
(
"id",
models.AutoField(
verbose_name="ID", serialize=False, auto_created=True, primary_key=True
verbose_name="ID",
serialize=False,
auto_created=True,
primary_key=True,
),
),
(
@ -47,7 +50,9 @@ class Migration(migrations.Migration):
(
"db_lock_storage",
models.TextField(
help_text="normally view:all().", verbose_name="locks", blank=True
help_text="normally view:all().",
verbose_name="locks",
blank=True,
),
),
("db_staff_only", models.BooleanField(default=False)),
@ -60,7 +65,10 @@ class Migration(migrations.Migration):
),
),
],
options={"verbose_name": "Help Entry", "verbose_name_plural": "Help Entries"},
options={
"verbose_name": "Help Entry",
"verbose_name_plural": "Help Entries",
},
bases=(models.Model,),
)
]

View file

@ -12,7 +12,9 @@ class Migration(migrations.Migration):
model_name="helpentry",
name="db_entrytext",
field=models.TextField(
blank=True, help_text="the main body of help text", verbose_name="help entry"
blank=True,
help_text="the main body of help text",
verbose_name="help entry",
),
),
migrations.AlterField(
@ -29,7 +31,10 @@ class Migration(migrations.Migration):
model_name="helpentry",
name="db_key",
field=models.CharField(
help_text="key to search for", max_length=255, unique=True, verbose_name="help key"
help_text="key to search for",
max_length=255,
unique=True,
verbose_name="help key",
),
),
migrations.AlterField(