(zelf: &Py<Self>, _args: Self::Args, vm: &VirtualMachine)
| 2637 | impl Callable for TaskStepMethWrapper { |
| 2638 | type Args = (); |
| 2639 | fn call(zelf: &Py<Self>, _args: Self::Args, vm: &VirtualMachine) -> PyResult { |
| 2640 | let task = zelf.task.read().clone(); |
| 2641 | match task { |
| 2642 | Some(t) => task_step_impl(&t, None, vm), |
| 2643 | None => Ok(vm.ctx.none()), |
| 2644 | } |
| 2645 | } |
| 2646 | } |
| 2647 | |
| 2648 | impl Representable for TaskStepMethWrapper { |
no test coverage detected