(self)
| 182 | |
| 183 | @property |
| 184 | def time(self) -> float: |
| 185 | assert self.start is not None, "Time not yet started." |
| 186 | assert self.end is not None, "Time not yet ended." |
| 187 | return self.end - self.start |
| 188 | |
| 189 | @property |
| 190 | def average_time(self) -> float: |
no outgoing calls
no test coverage detected