lint
This commit is contained in:
parent
108462f13f
commit
70a67b8c8d
|
@ -54,8 +54,7 @@ class Command(BaseCommand):
|
||||||
|
|
||||||
def handle(self, *args, **options):
|
def handle(self, *args, **options):
|
||||||
url = os.environ.get(
|
url = os.environ.get(
|
||||||
"LIBRETIME_GENERAL_PUBLIC_URL",
|
"LIBRETIME_GENERAL_PUBLIC_URL", settings.CONFIG.general.public_url
|
||||||
settings.CONFIG.general.public_url
|
|
||||||
)
|
)
|
||||||
auth_key = settings.CONFIG.general.api_key
|
auth_key = settings.CONFIG.general.api_key
|
||||||
|
|
||||||
|
@ -66,9 +65,7 @@ class Command(BaseCommand):
|
||||||
library = options.get("library", None)
|
library = options.get("library", None)
|
||||||
allowed_extensions = options.get("allowed_extensions")
|
allowed_extensions = options.get("allowed_extensions")
|
||||||
|
|
||||||
importer = Importer(
|
importer = Importer(url, auth_key, delete_after_upload, delete_if_exists)
|
||||||
url, auth_key, delete_after_upload, delete_if_exists
|
|
||||||
)
|
|
||||||
importer.import_dir(Path(path).resolve(), library, allowed_extensions)
|
importer.import_dir(Path(path).resolve(), library, allowed_extensions)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -23,4 +23,4 @@ See the command usage to get available options, or run
|
||||||
sudo -u libretime libretime-api bulk_import --help
|
sudo -u libretime libretime-api bulk_import --help
|
||||||
# or for docker
|
# or for docker
|
||||||
docker-compose run --rm api libretime-api bulk_import --help
|
docker-compose run --rm api libretime-api bulk_import --help
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue