(self, *args, **kwargs)
| 49 | |
| 50 | @functools.wraps(f) |
| 51 | def decorator(self, *args, **kwargs): |
| 52 | with context.execution_mode(context.ASYNC): |
| 53 | f(self, *args, **kwargs) |
| 54 | |
| 55 | with context.execution_mode(context.SYNC): |
| 56 | f(self, *args, **kwargs) |
| 57 | |
| 58 | return decorator |
| 59 |
nothing calls this directly
no test coverage detected