(self, *args, **kwargs)
| 24 | """ |
| 25 | |
| 26 | def __init__(self, *args, **kwargs): |
| 27 | super().__init__(*args, **kwargs) |
| 28 | # Create the Connection objects used for communication between the |
| 29 | # parent and child processes. |
| 30 | self.parent_conn, self.child_conn = multiprocessing.Pipe() |
| 31 | |
| 32 | def run(self): |
| 33 | """Method to be run in sub-process.""" |
nothing calls this directly
no outgoing calls
no test coverage detected