MCPcopy Create free account
hub / github.com/anomalyco/opencode-sdk-python / RecursiveLazyProxy

Class RecursiveLazyProxy

tests/test_utils/test_proxy.py:8–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7
8class 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!")
15
16
17def test_recursive_proxy() -> None:

Callers 1

test_recursive_proxyFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_recursive_proxyFunction · 0.68