Spaces:
Runtime error
Runtime error
added input number label
Browse files
app.py
CHANGED
|
@@ -561,7 +561,7 @@ st.subheader("Sequence Loader")
|
|
| 561 |
# input hash as secret
|
| 562 |
|
| 563 |
input_hash = st.text_input("Enter Hash:")
|
| 564 |
-
item_limit = st.number_input("Number of Videos",value=3)
|
| 565 |
if st.button('Load Sequence'):
|
| 566 |
HASH_KEY = st.secrets["hash_key"]
|
| 567 |
if input_hash == HASH_KEY:
|
|
|
|
| 561 |
# input hash as secret
|
| 562 |
|
| 563 |
input_hash = st.text_input("Enter Hash:")
|
| 564 |
+
item_limit = st.number_input(label="Number of Videos",value=3)
|
| 565 |
if st.button('Load Sequence'):
|
| 566 |
HASH_KEY = st.secrets["hash_key"]
|
| 567 |
if input_hash == HASH_KEY:
|