bhulston commited on
Commit
f1f5847
1 Parent(s): 54c11e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -4,4 +4,5 @@ from PIL import Image
4
 
5
  st.title("USC GPT - Find the perfect class")
6
 
7
- Before_time = st.slider('test')
 
 
4
 
5
  st.title("USC GPT - Find the perfect class")
6
 
7
+ time_options = [f"{hour:02d}:{minute:02d}" for hour in range(24) for minute in range(0, 60, 10)]
8
+ selected_time = st.slider("Select a time", options=time_options, format_func=lambda x: x)