From 345a2f3f45ab8bd4ed93cc4cee4a8fa5588f2965 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 25 Jul 2023 17:16:59 +0200 Subject: [PATCH] fix: Import method from the right file --- bin/background_indexer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/background_indexer.py b/bin/background_indexer.py index 10ff1d4f..7fe29ef2 100755 --- a/bin/background_indexer.py +++ b/bin/background_indexer.py @@ -8,10 +8,10 @@ import shutil from datetime import datetime from typing import Optional -from lookyloo.default import AbstractManager, get_config +from lookyloo.default import AbstractManager, get_config, try_make_file from lookyloo.exceptions import MissingUUID, NoValidHarFile from lookyloo.lookyloo import Lookyloo -from lookyloo.helpers import is_locked, try_make_file +from lookyloo.helpers import is_locked logging.config.dictConfig(get_config('logging'))