awacke1 commited on
Commit
ce77aca
Β·
1 Parent(s): 754fa78

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -224,12 +224,12 @@ def main():
224
  with open(file, 'r') as f:
225
  file_contents = f.read()
226
  next_action='search'
227
- with col2:
228
  if st.button("πŸ“‚", key="open_"+file): # open emoji button
229
  with open(file, 'r') as f:
230
  file_contents = f.read()
231
  next_action='open'
232
- with col3:
233
  if st.button("πŸ—‘", key="delete_"+file):
234
  os.remove(file)
235
  st.experimental_rerun()
 
224
  with open(file, 'r') as f:
225
  file_contents = f.read()
226
  next_action='search'
227
+ with col3:
228
  if st.button("πŸ“‚", key="open_"+file): # open emoji button
229
  with open(file, 'r') as f:
230
  file_contents = f.read()
231
  next_action='open'
232
+ with col4:
233
  if st.button("πŸ—‘", key="delete_"+file):
234
  os.remove(file)
235
  st.experimental_rerun()