Spaces:
Build error
Build error
feat: Set step of 10 tweets per number_input change
Browse files
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 |
|