The callback for handling events which are not handled by any other handler. :param method: The name of the intended handler method. :param args: Arguments for the intended handler method.
(self, method: str, *args)
| 53 | self.handlers.append(handler) |
| 54 | |
| 55 | def on_unhandled(self, method: str, *args) -> None: |
| 56 | """ |
| 57 | The callback for handling events which are not handled by |
| 58 | any other handler. |
| 59 | |
| 60 | :param method: The name of the intended handler method. |
| 61 | :param args: Arguments for the intended handler method. |
| 62 | """ |
| 63 | pass |