(self, device)
| 51 | |
| 52 | class SlowSetupLitAPI(SimpleLitAPI): |
| 53 | def setup(self, device): |
| 54 | self.model = lambda x: x**2 |
| 55 | time.sleep(2) |
| 56 | |
| 57 | |
| 58 | class SlowSetupWithCustomHealthLitAPI(SimpleLitAPI): |
nothing calls this directly
no outgoing calls
no test coverage detected