(self)
| 711 | self.name = 'Beat' |
| 712 | |
| 713 | def run(self): |
| 714 | reset_signals(full=False) |
| 715 | platforms.close_open_fds([ |
| 716 | sys.__stdin__, sys.__stdout__, sys.__stderr__, |
| 717 | ] + list(iter_open_logger_fds())) |
| 718 | self.app.set_default() |
| 719 | self.app.set_current() |
| 720 | self.service.start(embedded_process=True) |
| 721 | |
| 722 | def stop(self): |
| 723 | self.service.stop() |
nothing calls this directly
no test coverage detected