kmaurinjones commited on
Commit
fd633e6
1 Parent(s): d050fe6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,8 +8,8 @@ st.write("Welcome to SongScope. This is a web app that lets you download lyrics
8
  st.write("Enter an artist name, and you can even select up to 5 songs to retrieve their data. If you don't specify any songs,\ndata on all songs by the artist will be retrieved.")
9
 
10
  # delay times
11
- delay_min = int(st.text_input("Minimum delay per iteration"))
12
- delay_max = int(st.text_input("Maximum delay per iteration"))
13
  # delay_min = 15
14
  # delay_max = 30
15
 
 
8
  st.write("Enter an artist name, and you can even select up to 5 songs to retrieve their data. If you don't specify any songs,\ndata on all songs by the artist will be retrieved.")
9
 
10
  # delay times
11
+ delay_min = float(st.text_input("Minimum delay per iteration"))
12
+ delay_max = float(st.text_input("Maximum delay per iteration"))
13
  # delay_min = 15
14
  # delay_max = 30
15