Format Python code with black

This commit is contained in:
kpj 2022-02-27 15:26:41 +01:00
parent 13885968e3
commit fc695896dd
136 changed files with 6142 additions and 3811 deletions

View file

@ -8,21 +8,21 @@ from django.db import migrations
class Migration(migrations.Migration):
atomic = False
dependencies = [
('documents', '0010_log'),
("documents", "0010_log"),
]
operations = [
migrations.RenameModel(
old_name='Sender',
new_name='Correspondent',
old_name="Sender",
new_name="Correspondent",
),
migrations.AlterModelOptions(
name='document',
options={'ordering': ('correspondent', 'title')},
name="document",
options={"ordering": ("correspondent", "title")},
),
migrations.RenameField(
model_name='document',
old_name='sender',
new_name='correspondent',
model_name="document",
old_name="sender",
new_name="correspondent",
),
]