(self, executors: list)
| 236 | return executors |
| 237 | |
| 238 | async def load_executors_from_list(self, executors: list): |
| 239 | return [ExecutorSchema().load(entry) for entry in executors] |
| 240 | |
| 241 | async def load_requirements_from_list(self, requirements: list): |
| 242 | return [RequirementSchema().load(entry) for entry in requirements] |
no test coverage detected