tushifire commited on
Commit
cdd7bd2
·
1 Parent(s): 1d67e74

Removed hidden Parameter

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -44,9 +44,9 @@ def find_video_id(youtube_video_id):
44
 
45
  with st.form("my_form"):
46
  st.write('Enter Youtube API key( Will not be stored )')
47
- youtube_api_key = st.text_input('API key',label_visibility= "hidden")
48
  st.write('Enter Youtube Video ID/ Video Link')
49
- youtube_video_id = st.text_input('Video', label_visibility= "hidden")
50
  submitted = st.form_submit_button("Submit")
51
 
52
 
 
44
 
45
  with st.form("my_form"):
46
  st.write('Enter Youtube API key( Will not be stored )')
47
+ youtube_api_key = st.text_input('API key')
48
  st.write('Enter Youtube Video ID/ Video Link')
49
+ youtube_video_id = st.text_input('Video')
50
  submitted = st.form_submit_button("Submit")
51
 
52