revisions

This commit is contained in:
2025-01-14 11:10:13 -05:00
parent 3c23bc93f6
commit f3336b09ac
5 changed files with 58 additions and 37 deletions

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env python3.12
# pylint: disable=wrong-import-order
# pylint: disable=wrong-import-order, wrong-import-position
from typing import Optional
from lyric_search_new.constructors import LyricsResult
@@ -22,6 +22,7 @@ class Aggregate:
self.exclude_methods = exclude_methods
async def search(self, artist: str, song: str) -> Optional[LyricsResult]:
"""Aggregate Search"""
cache_search = cache.Cache()
genius_search = genius.Genius()
lrclib_search = lrclib.LRCLib()