import honeyhive
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.runs.delete_run(run_id='<value>')
if res.delete_run_response is not None:
# handle response
pass
import honeyhive
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.runs.delete_run(run_id='<value>')
if res.delete_run_response is not None:
# handle response
pass