rename make_lrc to save_lrc

This commit is contained in:
R. M
2023-09-30 00:12:19 -03:00
parent 8ad83e1f82
commit af1a356322
+1 -1
View File
@@ -627,7 +627,7 @@ class Downloader:
with open(cover_location, "wb") as f:
f.write(self.get_cover(cover_url))
def make_lrc(self, lrc_location: Path, lyrics_synced: str) -> None:
def save_lrc(self, lrc_location: Path, lyrics_synced: str) -> None:
lrc_location.parent.mkdir(parents=True, exist_ok=True)
with open(lrc_location, "w", encoding="utf8") as f:
f.write(lyrics_synced)