From 72d44d56c4a65fe390d55b5616bf3b764f30966d Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Tue, 12 Sep 2023 08:52:15 -0500 Subject: [PATCH] chore: black --- ietf/doc/migrations/0016_move_dochistory.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ietf/doc/migrations/0016_move_dochistory.py b/ietf/doc/migrations/0016_move_dochistory.py index 0dd80a953..3a43edb3b 100644 --- a/ietf/doc/migrations/0016_move_dochistory.py +++ b/ietf/doc/migrations/0016_move_dochistory.py @@ -18,10 +18,11 @@ def forward(apps, schema_editor): ).values_list("target_id", flat=True)[:1] ) ).update( - doc_id = F("rfc_id"), - type_id = "rfc" + doc_id=F("rfc_id"), type_id="rfc" ) - assert not DocHistory.objects.filter(name__startswith="rfc", type_id="draft").exists() + assert not DocHistory.objects.filter( + name__startswith="rfc", type_id="draft" + ).exists() def reverse(apps, schema_editor):