wilmerags commited on
Commit
33108e8
1 Parent(s): 4700cf0

feat: Set step of 10 tweets per number_input change

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ col1, col2 = st.columns(2)
10
  with col1:
11
  tw_user = st.text_input("Twitter handle", "huggingface")
12
  with col2:
13
- sample = st.number_input("Maximum number of tweets to use", 1, 300, 100)
14
 
15
  usr = client.get_user(username=tw_user)
16
 
 
10
  with col1:
11
  tw_user = st.text_input("Twitter handle", "huggingface")
12
  with col2:
13
+ sample = st.number_input("Maximum number of tweets to use", 1, 300, 100, 10)
14
 
15
  usr = client.get_user(username=tw_user)
16