(self)
| 16 | |
| 17 | class CustomOutput(BaseOutput): |
| 18 | def __init__(self): |
| 19 | self.log: List[EmissionsData] = list() |
| 20 | |
| 21 | def live_out(self, delta: EmissionsData, total: EmissionsData): |
| 22 | self.log.append(total) |
nothing calls this directly
no outgoing calls
no test coverage detected