(self, attr: str)
| 68 | self.__dict__["_module"] = module |
| 69 | |
| 70 | def __getattr__(self, attr: str) -> object: |
| 71 | obj = getattr(self._module, attr) |
| 72 | if isinstance(obj, _DeprecatedValue): |
| 73 | warnings.warn(obj.message, obj.warning_class, stacklevel=2) |
| 74 | obj = obj.value |
| 75 | return obj |
| 76 | |
| 77 | def __setattr__(self, attr: str, value: object) -> None: |
| 78 | setattr(self._module, attr, value) |
nothing calls this directly
no outgoing calls
no test coverage detected