cleanup the module structure a bit

This commit is contained in:
frederik
2025-11-11 14:55:17 +01:00
committed by Nachtzuster
parent b479855cfc
commit c1e70c3a2d
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ from subprocess import CalledProcessError
import inotify.adapters
from inotify.constants import IN_CLOSE_WRITE
from server import load_global_model, run_analysis
from utils.analysis import load_global_model, run_analysis
from utils.helpers import get_settings, get_wav_files, ANALYZING_NOW
from utils.classes import ParseFileName
from utils.reporting import extract_detection, summary, write_to_file, write_to_db, apprise, bird_weather, heartbeat, \
@@ -5,9 +5,9 @@ import time
import librosa
import numpy as np
from scripts.utils.classes import Detection, ParseFileName
from scripts.utils.helpers import get_settings, get_language
from scripts.utils.models import get_model
from .classes import Detection, ParseFileName
from .helpers import get_settings, get_language
from .models import get_model
log = logging.getLogger(__name__)