From be1e1350dc7a2c583286133d120ca83ebd5afdb3 Mon Sep 17 00:00:00 2001 From: Rafael Moraes <50295204+glomatico@users.noreply.github.com> Date: Tue, 3 Mar 2026 14:47:52 -0300 Subject: [PATCH] Use 'str | None' annotations in downloader types --- votify/downloader/types.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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