(self, f: "F")
| 26 | return False |
| 27 | |
| 28 | def __call__(self, f: "F") -> "F": |
| 29 | def wrapped(func, *args, **kwargs): |
| 30 | with self: |
| 31 | return func(*args, **kwargs) |
| 32 | |
| 33 | return decorate(f, wrapped) |
| 34 | |
| 35 | |
| 36 | class InprogressTracker: |
nothing calls this directly
no test coverage detected