(*args, **kwargs)
| 205 | def decorator(func): |
| 206 | @functools.wraps(func) |
| 207 | def wrapper(*args, **kwargs): |
| 208 | controller = _get_threadpool_controller() |
| 209 | with controller.limit(limits=limits, user_api=user_api): |
| 210 | return func(*args, **kwargs) |
| 211 | |
| 212 | return wrapper |
| 213 |
nothing calls this directly
no test coverage detected
searching dependent graphs…