python code style

This commit is contained in:
Michael Shamoon
2022-08-07 17:45:49 -07:00
parent 9c360a2ceb
commit b0ae307add
2 changed files with 13 additions and 7 deletions

View File

@@ -127,8 +127,11 @@ class Command(BaseCommand):
serializers.serialize("json", DocumentType.objects.all()),
)
manifest += json.loads(
serializers.serialize("json", Comment.objects.all())),
manifest += (
json.loads(
serializers.serialize("json", Comment.objects.all()),
),
)
documents = Document.objects.order_by("id")
document_map = {d.pk: d for d in documents}