fix: remove unused to_unsynced

This commit is contained in:
2026-04-08 07:20:28 +02:00
parent 573f8b5b8b
commit 1e0f8e2868
2 changed files with 1 additions and 13 deletions
+1 -5
View File
@@ -293,7 +293,7 @@ class LRCData:
else CacheStatus.SUCCESS_UNSYNCED
)
def normalize_unsynced(self) -> "LRCData":
def normalize_unsynced(self):
"""Convert lyrics into unsynced LRC form with [00:00.00] tags.
- Leading blank lyric lines are skipped.
@@ -366,10 +366,6 @@ class LRCData:
return "\n".join(sorted_lines).strip()
def to_unsynced(self) -> "LRCData":
"""Return a plain-text based unsynced representation."""
return LRCData(self.to_plain())
def to_text(
self,
plain: bool = False,