I am using Django-q to schedule a task at a specified date in an object (lets call this bell). I am successfully able to do so using
schedule_obj = schedule(func_name, arg1, arg2, arg3,
schedule_type=Schedule.ONCE,
next_run=bell.date)
when there is an update to the obj bell that holds the date, I want to modify this schedule obj with the updated date (bell.date). Is there a way to check if there is a schedule pending for this specific func_name with the args and then access it to modify it?