From cc710c91729861ccc5ccefdc122fdccd5de53f79 Mon Sep 17 00:00:00 2001 From: KubaPro010 <132459354+KubaPro010@users.noreply.github.com> Date: Sat, 8 Nov 2025 21:24:43 +0100 Subject: [PATCH] i get it now --- modules/advisor.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/advisor.py b/modules/advisor.py index d181860..45858a1 100644 --- a/modules/advisor.py +++ b/modules/advisor.py @@ -1,3 +1,10 @@ +MORNING_START = 5 +MORNING_END = 10 +DAY_START = 10 +DAY_END = 18 +LATE_NIGHT_START = 0 +LATE_NIGHT_END = 5 + from modules import BaseIMCModule, InterModuleCommunication from . import PlaylistAdvisor, log95, Path import os, datetime @@ -8,13 +15,6 @@ _log_file: TextIO assert _log_file # pyright: ignore[reportUnboundVariable] logger = log95.log95("ADVISOR", output=_log_file) -MORNING_START = 5 -MORNING_END = 10 -DAY_START = 10 -DAY_END = 18 -LATE_NIGHT_START = 0 -LATE_NIGHT_END = 5 - playlist_dir = Path("/home/user/playlists") class Time: