(self, *args, **kwargs)
| 105 | def decorator(func): |
| 106 | |
| 107 | def wrapper(self, *args, **kwargs): |
| 108 | with model_extra_attrs(get_attrs(self)): |
| 109 | return func(self, *args, **kwargs) |
| 110 | |
| 111 | return wrapper |
| 112 |
nothing calls this directly
no test coverage detected