(self, f: "F")
| 44 | self._gauge.dec() |
| 45 | |
| 46 | def __call__(self, f: "F") -> "F": |
| 47 | def wrapped(func, *args, **kwargs): |
| 48 | with self: |
| 49 | return func(*args, **kwargs) |
| 50 | |
| 51 | return decorate(f, wrapped) |
| 52 | |
| 53 | |
| 54 | class Timer: |
nothing calls this directly
no test coverage detected