Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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.
|
|
|
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)
|