cools commited on
Commit
d7cbc77
·
1 Parent(s): 2a57255

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ search = st.text_input('Search', placeholder='First Amendment cannot protect lib
43
  if search != "":
44
  res = search_index(query=search)
45
  for m in res:
46
- st.markdown("-" + m['metadata']['Text'])
47
  # st.write(m['metadata']['Text'])
48
 
49
 
 
43
  if search != "":
44
  res = search_index(query=search)
45
  for m in res:
46
+ st.markdown("- " + m['metadata']['Text'])
47
  # st.write(m['metadata']['Text'])
48
 
49