def delete_dp()

in experiments/google/cloud/ml/applied/embeddings/search.py [0:0]


def delete_dp(prod_id: str):
    try:
        remove_dp(prod_id + "_T")
    except Exception as e:
        print("Product description does not exist", e)

    try:
        remove_dp(prod_id + "_I")
    except Exception as e:
        print("Product image does not exist", e)