"""Interface to the ows-timed-release microservice.""" from owsrequest import request from product_digital.constants import services def delete_timed_release(product_id: int): """Delete the timed release for a product. Args: product_id (int): the product id Returns: response.Response: response from the service """ return request.delete( services.OWS_TIMED_RELEASE, f'/scheduled_update/{product_id}' )