A-O98 commited on
Commit
ba3cd14
·
verified ·
1 Parent(s): fa043a6

deletion mechanism updated

Browse files
Files changed (1) hide show
  1. pag/edit.py +2 -1
pag/edit.py CHANGED
@@ -144,7 +144,8 @@ def edit_fields():
144
  if delete:
145
  if len(gdf) == 1 and (gdf['name'] == field_name).all(): # Check if this is the only field left
146
  os.remove(fields_file_path) # Delete the .parquet file if it's the last field
147
- os.remove(history_file_path)
 
148
  st.success("All fields deleted. The data file has been removed.")
149
  time.sleep(0.3)
150
  st.rerun()
 
144
  if delete:
145
  if len(gdf) == 1 and (gdf['name'] == field_name).all(): # Check if this is the only field left
146
  os.remove(fields_file_path) # Delete the .parquet file if it's the last field
147
+ if os.path.exists(history_file_path):
148
+ os.remove(history_file_path)
149
  st.success("All fields deleted. The data file has been removed.")
150
  time.sleep(0.3)
151
  st.rerun()