(self)
| 16 | super().__init__(*args, **kwargs) |
| 17 | |
| 18 | def run(self): |
| 19 | from setproctitle import setthreadtitle |
| 20 | |
| 21 | setthreadtitle(str(self.custom_name)) |
| 22 | super().run() |
| 23 | |
| 24 | |
| 25 | class BBOTProcess(SpawnProcess): |
no outgoing calls
no test coverage detected