MCPcopy Create free account
hub / github.com/VitoHowe/glm-coding / __init__

Method __init__

app/storage/json_store.py:23–26  ·  view source on GitHub ↗
(self, path: Path, default_factory: Callable[[], Any])

Source from the content-addressed store, hash-verified

21 _replace_retry_delays = (0.05, 0.1, 0.2, 0.35, 0.5)
22
23 def __init__(self, path: Path, default_factory: Callable[[], Any]) -> None:
24 self.path = path
25 self.default_factory = default_factory
26 self._lock = threading.Lock()
27
28 def read(self) -> Any:
29 with self._lock:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected