mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-09 09:58:20 -05:00
Use dict
This commit is contained in:
parent
1f549dcd52
commit
5881c70051
@ -18,7 +18,7 @@ class Migration(migrations.Migration):
|
|||||||
help_text="Optional values to assign to the custom fields.",
|
help_text="Optional values to assign to the custom fields.",
|
||||||
null=True,
|
null=True,
|
||||||
verbose_name="custom field values",
|
verbose_name="custom field values",
|
||||||
default={},
|
default=dict,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
@ -1278,7 +1278,7 @@ class WorkflowAction(models.Model):
|
|||||||
help_text=_(
|
help_text=_(
|
||||||
"Optional values to assign to the custom fields.",
|
"Optional values to assign to the custom fields.",
|
||||||
),
|
),
|
||||||
default={},
|
default=dict,
|
||||||
)
|
)
|
||||||
|
|
||||||
remove_tags = models.ManyToManyField(
|
remove_tags = models.ManyToManyField(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user