(self, instance, action)
| 202 | """ |
| 203 | |
| 204 | def __init__(self, instance, action): |
| 205 | super().__setattr__('instance', instance) |
| 206 | super().__setattr__('action', action) |
| 207 | |
| 208 | def __getattr__(self, item): |
| 209 | modifiers = _dget(self.action.modifiers, self.instance) |
nothing calls this directly
no test coverage detected