(*args)
| 5416 | """ |
| 5417 | |
| 5418 | def _offset(*args): |
| 5419 | args2 = list(map(add, args, offset)) |
| 5420 | return func(*args2) |
| 5421 | |
| 5422 | with contextlib.suppress(Exception): |
| 5423 | _offset.__name__ = f"offset_{func.__name__}" |
nothing calls this directly
no test coverage detected
searching dependent graphs…