(self)
| 663 | return None |
| 664 | |
| 665 | def timer(self) -> "BaseTimerContext": |
| 666 | if self._timeout is not None and self._timeout > 0: |
| 667 | timer = TimerContext(self._loop) |
| 668 | self.register(timer.timeout) |
| 669 | return timer |
| 670 | else: |
| 671 | return TimerNoop() |
| 672 | |
| 673 | def __call__(self) -> None: |
| 674 | for cb, args, kwargs in self._callbacks: |
no test coverage detected