move more complex classes to their own module, keep imports helpers.py core python

This commit is contained in:
frederik
2025-10-29 18:56:59 +01:00
committed by Nachtzuster
parent 3554b38492
commit 06615fea8f
4 changed files with 7 additions and 50 deletions
+2 -1
View File
@@ -12,7 +12,8 @@ from time import sleep
import requests
from PIL import Image, ImageDraw, ImageFont
from .helpers import get_settings, ParseFileName, Detection, get_font, DB_PATH
from .helpers import get_settings, get_font, DB_PATH
from .classes import Detection, ParseFileName
from .notifications import sendAppriseNotifications
log = logging.getLogger(__name__)