Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ def paginar_frame(df):
|
|
31 |
with cols[n_row%N_cards_per_row]:
|
32 |
if 'answer' in row:
|
33 |
if (row['answer']):
|
34 |
-
t= row['answer'] + '(' + str(row['score']) + ')'
|
35 |
st.info(t)
|
36 |
row['resumen']=remove_html_markup(row['resumen'])
|
37 |
row['resumen']=remove_URL(row['resumen'])
|
|
|
31 |
with cols[n_row%N_cards_per_row]:
|
32 |
if 'answer' in row:
|
33 |
if (row['answer']):
|
34 |
+
t= row['answer'] + '(score: ' + str(row['score']) + ')'
|
35 |
st.info(t)
|
36 |
row['resumen']=remove_html_markup(row['resumen'])
|
37 |
row['resumen']=remove_URL(row['resumen'])
|