lewtun HF staff commited on
Commit
ad650fb
1 Parent(s): 338fec2

Tweak input box

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -55,7 +55,7 @@ with st.form(key="form"):
55
  data = str(uploaded_file.read(), "utf-8")
56
  json_data = json.loads(data)
57
 
58
- token = st.text_input("Password", type="password")
59
 
60
  submit_button = st.form_submit_button("Submit")
61
 
 
55
  data = str(uploaded_file.read(), "utf-8")
56
  json_data = json.loads(data)
57
 
58
+ token = st.text_input("Access token", type="password")
59
 
60
  submit_button = st.form_submit_button("Submit")
61