(*args: Any, **kw: Any)
| 47 | return func |
| 48 | |
| 49 | def wrapper(*args: Any, **kw: Any) -> Any: |
| 50 | wrapper.called = False # type: ignore[attr-defined] |
| 51 | out = func(*args, **kw) |
| 52 | wrapper.called = True # type: ignore[attr-defined] |
| 53 | return out |
| 54 | |
| 55 | wrapper.called = False # type: ignore[attr-defined] |
| 56 | wrapper.__doc__ = func.__doc__ |
nothing calls this directly
no test coverage detected
searching dependent graphs…