blunt-octopus commited on
Commit
353f1f9
1 Parent(s): 212f56d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -75,7 +75,7 @@ with st.form("Taxonomizer"):
75
  for i, tag_data in enumerate(tags):
76
  if i < 3:
77
  st.markdown('* ' + tag_data['tag'] + ' (' + tag_data['description'] + ')')
78
- if i == 2:
79
- st.subheader('Other possible tags:')
80
  else:
 
 
81
  st.caption('* ' + tag_data['tag'] + ' (' + tag_data['description'] + ')')
 
75
  for i, tag_data in enumerate(tags):
76
  if i < 3:
77
  st.markdown('* ' + tag_data['tag'] + ' (' + tag_data['description'] + ')')
 
 
78
  else:
79
+ if i == 3:
80
+ st.subheader('Other possible tags:')
81
  st.caption('* ' + tag_data['tag'] + ' (' + tag_data['description'] + ')')