(self, obj, value)
| 155 | return obj._proxy |
| 156 | |
| 157 | def __set__(self, obj, value): |
| 158 | if not isinstance(value, Proxy): |
| 159 | raise InvalidArgumentException("Only Proxy objects can be passed in.") |
| 160 | obj._proxy = value |
| 161 | obj._caps[self.name] = value.to_capabilities() |
| 162 | |
| 163 | |
| 164 | class BaseOptions(metaclass=ABCMeta): |
nothing calls this directly
no test coverage detected