mirror of
https://github.com/glomatico/votify.git
synced 2026-09-26 19:12:27 +02:00
Use 'str | None' annotations in downloader types
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user