Files
hatchet/frontend/docs/lib/generated/snips/python/waits/trigger.ts
Matt Kaye 246f284a98 Fix: Quote replacement in generated doc snippets (#1755)
* fix: get rid of quote replacing

* chore: gen

* drive by: event doc wording

* fix: dedenting
2025-05-20 09:19:58 -04:00

12 lines
471 B
TypeScript

import { Snippet } from '@/lib/generated/snips/types';
const snippet: Snippet = {
"language": "python",
"content": "import time\n\nfrom examples.waits.worker import hatchet, task_condition_workflow\n\ntask_condition_workflow.run_no_wait()\n\ntime.sleep(5)\n\nhatchet.event.push(\"skip_on_event:skip\", {})\nhatchet.event.push(\"wait_for_event:start\", {})\n",
"source": "out/python/waits/trigger.py",
"blocks": {},
"highlights": {}
};
export default snippet;