awacke1 commited on
Commit
ef2466a
β€’
1 Parent(s): 5d39a3e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -118,8 +118,8 @@ def main():
118
  htm_files = glob.glob("*.txt")
119
  for file in htm_files:
120
  st.sidebar.markdown(get_table_download_link(file), unsafe_allow_html=True)
121
- # if st.sidebar.button(f"Delete {file}"):
122
- if st.sidebar.button("πŸ—‘ Delete"):
123
  os.remove(file)
124
  st.experimental_rerun()
125
 
 
118
  htm_files = glob.glob("*.txt")
119
  for file in htm_files:
120
  st.sidebar.markdown(get_table_download_link(file), unsafe_allow_html=True)
121
+ if st.sidebar.button(f"πŸ—‘Delete {file}"):
122
+ #if st.sidebar.button("πŸ—‘ Delete"):
123
  os.remove(file)
124
  st.experimental_rerun()
125