Update app.py
Browse files
app.py
CHANGED
|
@@ -60,7 +60,7 @@ for c in cases:
|
|
| 60 |
tabs = st.tabs(types)
|
| 61 |
for (tab, type, author_ind, text, kws) in zip(tabs, types, author_inds, texts, keywords):
|
| 62 |
with tab:
|
| 63 |
-
st.markdown("**" + justices_df.iloc[author_ind]['Name'].split(', ')[0].split(' ')[-1] + "**")
|
| 64 |
for kw in kws:
|
| 65 |
all_kws.append(kw)
|
| 66 |
st.markdown("**Tags**: " + str(kws[0:6]))
|
|
|
|
| 60 |
tabs = st.tabs(types)
|
| 61 |
for (tab, type, author_ind, text, kws) in zip(tabs, types, author_inds, texts, keywords):
|
| 62 |
with tab:
|
| 63 |
+
st.markdown("**" + justices_df.iloc[author_ind]['Name'].split(', ')[0].split(' ')[-1] + "**")
|
| 64 |
for kw in kws:
|
| 65 |
all_kws.append(kw)
|
| 66 |
st.markdown("**Tags**: " + str(kws[0:6]))
|