mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
codestyle
This commit is contained in:
parent
1df922ef16
commit
a0f983f05d
@ -23,6 +23,7 @@ def _process_document(doc_in):
|
|||||||
finally:
|
finally:
|
||||||
parser.cleanup()
|
parser.cleanup()
|
||||||
|
|
||||||
|
|
||||||
class Command(Renderable, BaseCommand):
|
class Command(Renderable, BaseCommand):
|
||||||
|
|
||||||
help = """
|
help = """
|
||||||
@ -62,4 +63,6 @@ class Command(Renderable, BaseCommand):
|
|||||||
db.connections.close_all()
|
db.connections.close_all()
|
||||||
|
|
||||||
with multiprocessing.Pool() as pool:
|
with multiprocessing.Pool() as pool:
|
||||||
list(tqdm.tqdm(pool.imap_unordered(_process_document, ids), total=len(ids)))
|
list(tqdm.tqdm(
|
||||||
|
pool.imap_unordered(_process_document, ids), total=len(ids)
|
||||||
|
))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user