update types

This commit is contained in:
Anthony Samms
2025-11-05 11:08:20 -05:00
parent b5625f7565
commit 6a25e8b369
2 changed files with 5 additions and 4 deletions

View File

@@ -142,7 +142,7 @@ class GlobalData:
session_data (list[SessionData]): Session data for both players.
"""
songs_played: int = 0
config: dict = field(default_factory=dict)
config: Config = field(default_factory=dict)
song_hashes: dict[str, list[dict]] = field(default_factory=lambda: dict()) #Hash to path
song_paths: dict[Path, str] = field(default_factory=lambda: dict()) #path to hash
song_progress: float = 0.0