codestyle

This commit is contained in:
jonaswinkler 2020-12-30 17:20:03 +01:00
parent 1df922ef16
commit a0f983f05d

View File

@ -23,6 +23,7 @@ def _process_document(doc_in):
finally:
parser.cleanup()
class Command(Renderable, BaseCommand):
help = """
@ -62,4 +63,6 @@ class Command(Renderable, BaseCommand):
db.connections.close_all()
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)
))