(self, fget: Callable[[type], Any])
| 204 | __slots__ = ("_fget",) |
| 205 | |
| 206 | def __init__(self, fget: Callable[[type], Any]) -> None: |
| 207 | self._fget = fget |
| 208 | |
| 209 | def __get__(self, instance: Any, owner: type | None = None) -> Any: |
| 210 | cls = owner if owner is not None else type(instance) |
nothing calls this directly
no outgoing calls
no test coverage detected