chore: regenerate examples (#2256)

Co-authored-by: GitHub Action <action@github.com>
This commit is contained in:
github-actions[bot]
2025-09-05 15:09:10 -04:00
committed by GitHub
parent 4a50e454a6
commit ca6ccc7ab6
2 changed files with 5 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
# > Schedule a Task
from examples.simple.worker import simple
from datetime import datetime
schedule = simple.schedule([datetime(2025, 3, 14, 15, 9, 26)])
from examples.simple.worker import simple
schedule = simple.schedule(datetime(2025, 3, 14, 15, 9, 26))
## 👀 do something with the id
print(schedule.id)

View File

@@ -1,6 +1,7 @@
from hatchet_sdk import Hatchet, Context
from pydantic import BaseModel
from hatchet_sdk import Context, Hatchet
hatchet = Hatchet()