naveed-stockmark commited on
Commit
314c80a
1 Parent(s): f92e8c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -53,9 +53,9 @@ if query_option is not ' ':
53
  for i, l in enumerate(list1):
54
  # if l not in list3:
55
  if i+1 > len(list3):
56
- st.write(f":red[{l}]")
57
  else:
58
- st.write(l)
59
 
60
  # diff_html = doc['diff_html']
61
  # st.markdown(diff_html, unsafe_allow_html=True)
 
53
  for i, l in enumerate(list1):
54
  # if l not in list3:
55
  if i+1 > len(list3):
56
+ st.write(f":red[{str(i) + ' ' + l}]")
57
  else:
58
+ st.write(str(i) + ' ' + l)
59
 
60
  # diff_html = doc['diff_html']
61
  # st.markdown(diff_html, unsafe_allow_html=True)