wldmr commited on
Commit
19a30c9
1 Parent(s): afe7c67
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -79,3 +79,10 @@ if __name__ == "__main__":
79
  )
80
  if input_text.strip():
81
  get_correction(input_text)
 
 
 
 
 
 
 
 
79
  )
80
  if input_text.strip():
81
  get_correction(input_text)
82
+
83
+ hide_streamlit_style = """
84
+ <style>
85
+ footer {visibility: hidden;}
86
+ </style>
87
+ """
88
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)