0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00

i get it now

This commit is contained in:
KubaPro010
2025-11-08 21:24:43 +01:00
parent c6c296c17d
commit cc710c9172

View File

@@ -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 modules import BaseIMCModule, InterModuleCommunication
from . import PlaylistAdvisor, log95, Path from . import PlaylistAdvisor, log95, Path
import os, datetime import os, datetime
@@ -8,13 +15,6 @@ _log_file: TextIO
assert _log_file # pyright: ignore[reportUnboundVariable] assert _log_file # pyright: ignore[reportUnboundVariable]
logger = log95.log95("ADVISOR", output=_log_file) 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") playlist_dir = Path("/home/user/playlists")
class Time: class Time: