Skip to content

Commit a66223b

Browse files
committed
Fix Migration format with black
1 parent c1c1e45 commit a66223b

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

app/api/mapping/migrations/0014_alter_scanreportfield_name_and_more.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,19 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
9-
('mapping', '0013_alter_datadictionary_id_alter_datapartner_id_and_more'),
8+
("mapping", "0013_alter_datadictionary_id_alter_datapartner_id_and_more"),
109
]
1110

1211
operations = [
1312
migrations.AlterField(
14-
model_name='scanreportfield',
15-
name='name',
13+
model_name="scanreportfield",
14+
name="name",
1615
field=models.CharField(db_index=True, max_length=2048),
1716
),
1817
migrations.AlterField(
19-
model_name='scanreportvalue',
20-
name='value',
18+
model_name="scanreportvalue",
19+
name="value",
2120
field=models.CharField(db_index=True, max_length=2048),
2221
),
2322
]

0 commit comments

Comments
 (0)