kmaurinjones commited on
Commit
ea0a27d
1 Parent(s): 2e43002

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -23,17 +23,17 @@ titles_list = []
23
  song_1 = st.text_input("Enter 1st song title here", value = "gravity")
24
 
25
  if song_1:
26
- song_2 = st.text_input("Enter 2nd song title here", value = "slowin dancing burbg room")
27
  titles_list.append(song_1)
 
28
  if song_2:
29
- song_3 = st.text_input("Enter 3rd song title here")
30
  titles_list.append(song_2)
 
31
  if song_3:
32
- song_4 = st.text_input("Enter 4th song title here")
33
  titles_list.append(song_3)
 
34
  if song_4:
35
- song_5 = st.text_input("Enter 5th song title here")
36
  titles_list.append(song_4)
 
37
  if song_5:
38
  titles_list.append(song_5)
39
 
 
23
  song_1 = st.text_input("Enter 1st song title here", value = "gravity")
24
 
25
  if song_1:
 
26
  titles_list.append(song_1)
27
+ song_2 = st.text_input("Enter 2nd song title here", value = "slowin dancing burbg room")
28
  if song_2:
 
29
  titles_list.append(song_2)
30
+ song_3 = st.text_input("Enter 3rd song title here")
31
  if song_3:
 
32
  titles_list.append(song_3)
33
+ song_4 = st.text_input("Enter 4th song title here")
34
  if song_4:
 
35
  titles_list.append(song_4)
36
+ song_5 = st.text_input("Enter 5th song title here")
37
  if song_5:
38
  titles_list.append(song_5)
39