maurol commited on
Commit
0a5a379
1 Parent(s): f712385

update watchdog module

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. requirements.txt +2 -1
app.py CHANGED
@@ -25,9 +25,9 @@ st.info(info, icon="ℹ️")
25
  with st.sidebar:
26
  st.subheader("Automated lyrics translation!")
27
 
28
- language_original = st.radio("Choose a language:", tuple(language_mapper.keys()))
29
  song = st.text_input("Choose a track:", "One More Time")
30
  artist = st.text_input("Choose an artist:", "Daft Punk")
 
31
 
32
  is_button_results = st.button("Translate!")
33
 
 
25
  with st.sidebar:
26
  st.subheader("Automated lyrics translation!")
27
 
 
28
  song = st.text_input("Choose a track:", "One More Time")
29
  artist = st.text_input("Choose an artist:", "Daft Punk")
30
+ language_original = st.radio("Choose a language:", tuple(language_mapper.keys()))
31
 
32
  is_button_results = st.button("Translate!")
33
 
requirements.txt CHANGED
@@ -1,3 +1,4 @@
1
  streamlit
2
  lyrics-translator
3
- altair<5
 
 
1
  streamlit
2
  lyrics-translator
3
+ altair<5
4
+ watchdog