vegetable_classifier / utils /delete_file.py
ksvmuralidhar's picture
Upload 15 files
530f5ca verified
from os import path
from shutil import rmtree
def delete_file(path_: str):
if path.exists(path_):
rmtree(path=path_, ignore_errors=True)