Rename skip_synced_lyrics to no_synced_lyrics

This commit is contained in:
Rafael Moraes
2025-10-21 17:28:34 -03:00
parent 51cf22fe87
commit 37e77c4ca2
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ class AppleMusicDownloader:
if (
download_item.lyrics
and download_item.lyrics.synced
and not self.song_downloader.skip_synced_lyrics
and not self.song_downloader.no_synced_lyrics
):
self.song_downloader.write_synced_lyrics(
download_item.lyrics.synced,
+2 -2
View File
@@ -16,13 +16,13 @@ class AppleMusicSongDownloader:
downloader: AppleMusicBaseDownloader,
song_codec: SongCodec = SongCodec.AAC_LEGACY,
synced_lyrics_format: SyncedLyricsFormat = SyncedLyricsFormat.LRC,
skip_synced_lyrics: bool = False,
no_synced_lyrics: bool = False,
synced_lyrics_only: bool = False,
):
self.downloader = downloader
self.song_codec = song_codec
self.synced_lyrics_format = synced_lyrics_format
self.skip_synced_lyrics = skip_synced_lyrics
self.no_synced_lyrics = no_synced_lyrics
self.synced_lyrics_only = synced_lyrics_only
def setup(self):