MCPcopy Create free account
hub / github.com/CommonstackAI/UncommonRoute / __init__

Method __init__

uncommon_route/scene_store.py:160–163  ·  view source on GitHub ↗
(self, path: Path | None = None)

Source from the content-addressed store, hash-verified

158 """CRUD store for named scenes, backed by a JSON file."""
159
160 def __init__(self, path: Path | None = None) -> None:
161 self._path = path or _SCENES_FILE
162 self._scenes: dict[str, SceneConfig] = {}
163 self._load()
164
165 def _load(self) -> None:
166 """Load scenes from disk. Silently ignores corrupt files."""

Callers

nothing calls this directly

Calls 1

_loadMethod · 0.95

Tested by

no test coverage detected