awacke1 commited on
Commit
26fbc34
Β·
1 Parent(s): bfb0bbb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -122,10 +122,10 @@ def main():
122
  if "current_index" not in st.session_state:
123
  st.session_state.current_index = random.randint(0, len(quotes)-1)
124
 
125
- st.title("Quote Timer")
126
 
127
  # AutoRepeat radio button
128
- st.session_state.auto_repeat = st.radio("πŸ”„ AutoRepeat", ["On", "Off"])
129
 
130
  # Display the current quote
131
  display_quote(st.session_state.current_index)
 
122
  if "current_index" not in st.session_state:
123
  st.session_state.current_index = random.randint(0, len(quotes)-1)
124
 
125
+ st.title("Quote Bot AutoRepeat")
126
 
127
  # AutoRepeat radio button
128
+ st.session_state.auto_repeat = st.radio("πŸ”„ AutoRepeat", ["On", "Off"], horizontal=True)
129
 
130
  # Display the current quote
131
  display_quote(st.session_state.current_index)