Update app.py
Browse files
app.py
CHANGED
@@ -4,4 +4,5 @@ from PIL import Image
|
|
4 |
|
5 |
st.title("USC GPT - Find the perfect class")
|
6 |
|
7 |
-
|
|
|
|
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)
|