Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -30,7 +30,7 @@ def get_song_lyrics(song_name:str, artist_name:str)-> str: #it's import to speci
|
|
| 30 |
|
| 31 |
if song:
|
| 32 |
# Return the song lyrics if found
|
| 33 |
-
return f"The lyrics of the {song_name} by {artist_name} is ... {song.lyrics}
|
| 34 |
else:
|
| 35 |
return "Song not found."
|
| 36 |
except Exception as e:
|
|
|
|
| 30 |
|
| 31 |
if song:
|
| 32 |
# Return the song lyrics if found
|
| 33 |
+
return f"The lyrics of the {song_name} by {artist_name} is ... {song.lyrics}"
|
| 34 |
else:
|
| 35 |
return "Song not found."
|
| 36 |
except Exception as e:
|