(self)
| 8 | class RecursiveLazyProxy(LazyProxy[Any]): |
| 9 | @override |
| 10 | def __load__(self) -> Any: |
| 11 | return self |
| 12 | |
| 13 | def __call__(self, *_args: Any, **_kwds: Any) -> Any: |
| 14 | raise RuntimeError("This should never be called!") |
nothing calls this directly
no outgoing calls
no test coverage detected