(self, input_data)
| 174 | print("Example 12") |
| 175 | class GenericWorker: |
| 176 | def __init__(self, input_data): |
| 177 | self.input_data = input_data |
| 178 | self.result = None |
| 179 | |
| 180 | def map(self): |
| 181 | raise NotImplementedError |
nothing calls this directly
no outgoing calls
no test coverage detected