0.0.4
- Starting from 0.0.4 you can pass on additional kwargs to the job just like above:
async def your_task(repository: Repository, user_id: int):
...
scheduler.add_job(your_task, ..., kwargs={"user_id": 435345})- Internal API changes
async def your_task(repository: Repository, user_id: int):
...
scheduler.add_job(your_task, ..., kwargs={"user_id": 435345})