(*args, **kw)
| 210 | def __call__(self, func): |
| 211 | @wraps(func) |
| 212 | def wrapper(*args, **kw): |
| 213 | with self as counter_with_timer: |
| 214 | if self._include_parameter: |
| 215 | kw["metrics_counter_with_timer"] = counter_with_timer |
| 216 | return func(*args, **kw) |
| 217 | |
| 218 | return wrapper |
| 219 |
nothing calls this directly
no outgoing calls
no test coverage detected