PureVersation / delete_invalid.py
github-actions[bot]
Automated deployment to Hugging Face
963d10b
Raw
History Blame Contribute Delete
268 Bytes
from huggingface_hub import HfApi
api = HfApi()
try:
api.delete_file("Asusu Igbo English.csv", repo_id="toecm/IEDID", repo_type="dataset")
print("Deleted Asusu Igbo English.csv")
except Exception as e:
print("Failed to delete Asusu Igbo English.csv:", e)