(self)
| 30 | """ |
| 31 | |
| 32 | def __init__(self): |
| 33 | self.phases = [] |
| 34 | self.current = None |
| 35 | |
| 36 | def end_phase(self, tokens: int, now: Optional[float] = None): |
| 37 | """Terminate the current phase.""" |
nothing calls this directly
no outgoing calls
no test coverage detected