(self)
| 125 | self.times = times |
| 126 | |
| 127 | def __call__(self) -> Any: |
| 128 | arg_count = len(inspect.signature(self._handler).parameters) |
| 129 | if arg_count == 0: |
| 130 | return self._handler() |
| 131 | return self._handler(self.locator) |
| 132 | |
| 133 | |
| 134 | class Page(ChannelOwner): |