(*args, **kwargs)
| 153 | def identity_wrapper(func): |
| 154 | @functools.wraps(func) |
| 155 | def wrapped(*args, **kwargs): |
| 156 | return func(*args, **kwargs) |
| 157 | return wrapped |
| 158 | |
| 159 | # Original signature of the simple wrapped function returned by |
no test coverage detected
searching dependent graphs…