(self, func, *args, **kwargs)
| 138 | self.exception_info = None |
| 139 | |
| 140 | def put(self, func, *args, **kwargs): |
| 141 | self.tasks.put((func, args, kwargs)) |
| 142 | |
| 143 | def on_exception(self, worker_thread, exc_info): |
| 144 | if self.telebot.exception_handler is not None: |
no outgoing calls
no test coverage detected