Modfiededition commited on
Commit
e0e5a49
·
1 Parent(s): c13fcec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -23,7 +23,8 @@ st.subheader("Some examples: ")
23
  example_1 = st.button("I am write on AI")
24
  example_2 = st.button("This sentence has, bads grammar mistake!")
25
 
26
- textbox = st.text_area('Write your text in this box:', '', height=100, max_chars=1000)
 
27
 
28
  button = st.button('Detect grammar mistakes:')
29
 
 
23
  example_1 = st.button("I am write on AI")
24
  example_2 = st.button("This sentence has, bads grammar mistake!")
25
 
26
+ # height=100, max_chars=1000
27
+ textbox = st.text_input('Write your text in this box:', '',max_chars = 1000 )
28
 
29
  button = st.button('Detect grammar mistakes:')
30