mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-10 16:46:50 +01:00
python code style
This commit is contained in:
parent
5c1e09cc48
commit
d5018af2a3
2 changed files with 13 additions and 7 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue