(cls, input_class, config)
| 185 | |
| 186 | @classmethod |
| 187 | def create_workers(cls, input_class, config): |
| 188 | workers = [] |
| 189 | for input_data in input_class.generate_inputs(config): |
| 190 | workers.append(cls(input_data)) |
| 191 | return workers |
| 192 | |
| 193 | |
| 194 | print("Example 13") |
no test coverage detected