That1BrainCell commited on
Commit
30032ef
1 Parent(s): 7bb3862

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -252,9 +252,9 @@ with st.sidebar:
252
  top_similar_count = st.number_input("Top Similarities to be Displayed", value=3, min_value=1, step=1, format="%i")
253
 
254
 
255
- col1,col2 = st.columns([7,3])
256
 
257
- with col1:
258
  run_streamlit = st.button('Check for Infringement')
259
 
260
 
@@ -373,7 +373,7 @@ def update():
373
  st.rerun()
374
 
375
  if "update" not in st.session_state:
376
- with col2:
377
  update_button = st.button("Update Database",type="primary")
378
  if update_button:
379
  update()
 
252
  top_similar_count = st.number_input("Top Similarities to be Displayed", value=3, min_value=1, step=1, format="%i")
253
 
254
 
255
+ col1_main,col2_main = st.columns([7,3])
256
 
257
+ with col1_main:
258
  run_streamlit = st.button('Check for Infringement')
259
 
260
 
 
373
  st.rerun()
374
 
375
  if "update" not in st.session_state:
376
+ with col2_main:
377
  update_button = st.button("Update Database",type="primary")
378
  if update_button:
379
  update()