Skip to content

Commit

Permalink
Nicer UI
Browse files Browse the repository at this point in the history
  • Loading branch information
SebRil committed Dec 1, 2024
1 parent 910090b commit 6549847
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ def handle_deezer_input_playlist(playlist_id):
try:
deezer_handler = dh.DeezerHandler()
playlist = deezer_handler.get_public_playlist(playlist_id)
st.title("The playlist title is: ", playlist.title)
st.title(playlist.title)
st.text("Select the songs to migrate to Spotify")
except Exception as e:
st.sidebar.write("Wrong playlist ID 🫣")
playlist = None
Expand Down

0 comments on commit 6549847

Please sign in to comment.