hancav commited on
Commit
6b48441
·
1 Parent(s): 23f67f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -2,7 +2,6 @@ import streamlit as st
2
  from langdetect import detect
3
 
4
  text = st.text_area('Please enter some text for language detection !!')
5
-
6
  if text:
7
  out = detect(text)
8
- st.json(out)
 
2
  from langdetect import detect
3
 
4
  text = st.text_area('Please enter some text for language detection !!')
 
5
  if text:
6
  out = detect(text)
7
+ st.text_area(out)