From 108462f13f6c7d84e097c44cfa84ade6dc401359 Mon Sep 17 00:00:00 2001 From: Keoni Mahelona Date: Wed, 7 Feb 2024 09:21:04 -1000 Subject: [PATCH] lint --- api/libretime_api/storage/management/commands/bulk_import.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/libretime_api/storage/management/commands/bulk_import.py b/api/libretime_api/storage/management/commands/bulk_import.py index 9695a044c..974f2af47 100644 --- a/api/libretime_api/storage/management/commands/bulk_import.py +++ b/api/libretime_api/storage/management/commands/bulk_import.py @@ -66,7 +66,9 @@ class Command(BaseCommand): library = options.get("library", None) allowed_extensions = options.get("allowed_extensions") - importer = Importer(url, auth_key, delete_after_upload, delete_if_exists) + importer = Importer( + url, auth_key, delete_after_upload, delete_if_exists + ) importer.import_dir(Path(path).resolve(), library, allowed_extensions)