Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
m-danya committed Apr 16, 2024
1 parent 4c1d40f commit 2dd6a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accompanist/collection/service_genius.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from accompanist.config import settings


def get_lyrics_from_genius(artist_name: str, song_name: str) -> str:
def get_lyrics_from_genius(artist_name: str, song_name: str) -> tuple[str, str]:
genius = lyricsgenius.Genius(settings.GENIUS_CLIENT_ACCESS_TOKEN)

# Keep section headers (e.g. [Chorus]) in lyrics
Expand Down

0 comments on commit 2dd6a2b

Please sign in to comment.