(self)
| 30 | return np.std(self.times) # type: ignore |
| 31 | |
| 32 | def mean(self) -> float: |
| 33 | return np.mean(self.times) # type: ignore |
| 34 | |
| 35 | def percentile(self, perc: float) -> float: |
| 36 | return np.percentile(self.times, perc) # type: ignore |
no outgoing calls
no test coverage detected