UnarineLeo commited on
Commit
08d27cb
1 Parent(s): 818719c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -93,7 +93,7 @@ with col1:
93
 
94
  uploaded_file = st.file_uploader("Choose a file-(one sentence per line)")
95
  if uploaded_file is not None:
96
-
97
  stringio = StringIO(uploaded_file.getvalue().decode("utf-8"))
98
  string_data = stringio.read()
99
 
 
93
 
94
  uploaded_file = st.file_uploader("Choose a file-(one sentence per line)")
95
  if uploaded_file is not None:
96
+ warnings = []
97
  stringio = StringIO(uploaded_file.getvalue().decode("utf-8"))
98
  string_data = stringio.read()
99