mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-11 09:07:18 +01:00
codestyle
This commit is contained in:
parent
f0ad92e542
commit
80b47fa287
2 changed files with 12 additions and 9 deletions
|
|
@ -90,7 +90,7 @@ def sanity_check():
|
|||
return "No issues detected."
|
||||
|
||||
|
||||
def bulk_rename_files(ids):
|
||||
qs = Document.objects.filter(id__in=ids)
|
||||
def bulk_rename_files(document_ids):
|
||||
qs = Document.objects.filter(id__in=document_ids)
|
||||
for doc in qs:
|
||||
post_save.send(Document, instance=doc, created=False)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue