Joshua1808 commited on
Commit
ad444d0
·
1 Parent(s): be92aba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -115,10 +115,12 @@ def analizar_tweets(search_words, number_of_tweets):
115
  st.set_option('deprecation.showPyplotGlobalUse', False)
116
  st.pyplot()
117
  else:
118
- st.text("No hay tweets a analizar")
 
119
 
120
  else:
121
- st.text("Ingrese la cantidad de tweets")
 
122
 
123
  return tabla
124
 
 
115
  st.set_option('deprecation.showPyplotGlobalUse', False)
116
  st.pyplot()
117
  else:
118
+ muestra = st.text("No hay tweets a analizar")
119
+ tabla.append(muestra)
120
 
121
  else:
122
+ muestra = st.text("Ingrese la cantidad de tweets")
123
+ tabla.append(muestra)
124
 
125
  return tabla
126