(self, job: Job)
| 5 | |
| 6 | class EngineModule: |
| 7 | def __init__(self, job: Job): |
| 8 | self.job = job |
| 9 | |
| 10 | def run(self) -> Dict[str, Any]: |
| 11 | raise NotImplementedError("Method run not implemented") |
nothing calls this directly
no outgoing calls
no test coverage detected