(self, e: Executor)
| 83 | self.mz_service = mz_service |
| 84 | |
| 85 | def execute(self, e: Executor) -> None: |
| 86 | for check in self.checks: |
| 87 | print(f"Running initialize() from {check}") |
| 88 | check.start_initialize(e, self) |
| 89 | |
| 90 | def join(self, e: Executor) -> None: |
| 91 | for check in self.checks: |
nothing calls this directly
no test coverage detected