()
| 8 | self._exception = None |
| 9 | |
| 10 | def function(): |
| 11 | try: |
| 12 | self.result = target(*args, **kwargs) |
| 13 | except Exception as e: |
| 14 | self._exception = e |
| 15 | |
| 16 | super().__init__(group=group, target=function, name=name, daemon=daemon) |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected