diff --git a/votify/downloader/types.py b/votify/downloader/types.py index 3fcf1fc..558ee0d 100644 --- a/votify/downloader/types.py +++ b/votify/downloader/types.py @@ -8,8 +8,8 @@ from ..interface.types import SpotifyMedia class DownloadItem: media: SpotifyMedia uuid_: str = uuid.uuid4().hex[:8] - staged_path: str = None - final_path: str = None - playlist_file_path: str = None - synced_lyrics_path: str = None - cover_path: str = None + final_path: str | None = None + staged_path: str | None = None + playlist_file_path: str | None = None + synced_lyrics_path: str | None = None + cover_path: str | None = None