(self, *_args: Any, **_kwds: Any)
| 11 | return self |
| 12 | |
| 13 | def __call__(self, *_args: Any, **_kwds: Any) -> Any: |
| 14 | raise RuntimeError("This should never be called!") |
| 15 | |
| 16 | |
| 17 | def test_recursive_proxy() -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected