Run the timer task.
(self)
| 141 | self._active.set() |
| 142 | |
| 143 | async def _run_timer(self) -> None: |
| 144 | """Run the timer task.""" |
| 145 | try: |
| 146 | await self._run() |
| 147 | except CancelledError: |
| 148 | pass |
| 149 | |
| 150 | async def _run(self) -> None: |
| 151 | """Run the timer.""" |