blazingbunny commited on
Commit
2b3eca9
1 Parent(s): bcb57ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ if uploaded_file is not None:
17
  total_length = len(user_input.split())
18
 
19
  # Add sliders to the sidebar
20
- min_length_percentage = st.sidebar.slider('Minimum Length %', min_value=10, max_value=50, value=30)
21
  max_length_percentage = min_length_percentage + 10
22
  st.sidebar.text(f'Maximum Length %: {max_length_percentage}')
23
 
 
17
  total_length = len(user_input.split())
18
 
19
  # Add sliders to the sidebar
20
+ min_length_percentage = st.sidebar.slider('Minimum Length %', min_value=10, max_value=100, value=50)
21
  max_length_percentage = min_length_percentage + 10
22
  st.sidebar.text(f'Maximum Length %: {max_length_percentage}')
23