From e3cc5c301386d257657de5559813d46046b14eda Mon Sep 17 00:00:00 2001 From: Gwyn Hannay Date: Fri, 29 Jul 2022 20:32:07 -0700 Subject: [PATCH] format code --- src/documents/consumer.py | 2 +- .../migrations/1023_document_original_filename.py | 15 +++++++++++---- src/documents/models.py | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/documents/consumer.py b/src/documents/consumer.py index bbad88b12..9cc9b758d 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -475,7 +475,7 @@ class Consumer(LoggingMixin): created=create_date, modified=create_date, storage_type=storage_type, - original_filename=self.filename + original_filename=self.filename, ) self.apply_overrides(document) diff --git a/src/documents/migrations/1023_document_original_filename.py b/src/documents/migrations/1023_document_original_filename.py index 53e451dba..065956bd9 100644 --- a/src/documents/migrations/1023_document_original_filename.py +++ b/src/documents/migrations/1023_document_original_filename.py @@ -6,13 +6,20 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('documents', '1022_paperlesstask'), + ("documents", "1022_paperlesstask"), ] operations = [ migrations.AddField( - model_name='document', - name='original_filename', - field=models.CharField(default=None, editable=False, help_text='The original name of the file when it was uploaded', max_length=1024, null=True, verbose_name='original filename'), + model_name="document", + name="original_filename", + field=models.CharField( + default=None, + editable=False, + help_text="The original name of the file when it was uploaded", + max_length=1024, + null=True, + verbose_name="original filename", + ), ), ] diff --git a/src/documents/models.py b/src/documents/models.py index c371bc99e..f6df273ad 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -221,7 +221,7 @@ class Document(models.Model): default=None, unique=False, null=True, - help_text=_("The original name of the file when it was uploaded") + help_text=_("The original name of the file when it was uploaded"), ) archive_serial_number = models.IntegerField(