def delete_file()

in google_cloud_automlops/utils/utils.py [0:0]


def delete_file(filepath: str):
    """Deletes a file at the specified path. If it does not exist, pass.

    Args:
        filepath (str): Path to the file.
    """
    try:
        os.remove(filepath)
    except OSError:
        pass