darwinharianto commited on
Commit
02c6c09
·
1 Parent(s): c3ce138

fixed spacing

Browse files
Files changed (1) hide show
  1. app.py +2 -8
app.py CHANGED
@@ -39,17 +39,11 @@ if __name__=="__main__":
39
  col1, col2 = st.columns(2)
40
  with col1:
41
  text1 = st.text_area("Input Text", value=
42
- """
43
- The quick brown fox jumps over the lazy dog.
44
- この竹垣に竹立てかけたのは竹立てかけたかったからか竹立てかけ
45
- """
46
  )
47
  with col2:
48
  text2 = st.text_area("Source Text", value=
49
- """
50
- The quick brown fox jumps over the lazy cat.
51
- この竹垣に竹立てかけたのは竹立てかけたかったから竹立てかけた
52
- """
53
  )
54
 
55
  diff = compare_string(text2, text1)
 
39
  col1, col2 = st.columns(2)
40
  with col1:
41
  text1 = st.text_area("Input Text", value=
42
+ """The quick brown fox jumps over the lazy dog. この竹垣に竹立てかけたのは竹立てかけたかったからか竹立てかけ"""
 
 
 
43
  )
44
  with col2:
45
  text2 = st.text_area("Source Text", value=
46
+ """The quick brown fox jumps over the lazy cat. この竹垣に竹立てかけたのは竹立てかけたかったから竹立てかけた"""
 
 
 
47
  )
48
 
49
  diff = compare_string(text2, text1)