(self, store_dir: Path)
| 351 | """JSONL-backed store for pipeline lessons.""" |
| 352 | |
| 353 | def __init__(self, store_dir: Path) -> None: |
| 354 | self._dir = store_dir |
| 355 | self._dir.mkdir(parents=True, exist_ok=True) |
| 356 | self._lessons_path = self._dir / "lessons.jsonl" |
| 357 | |
| 358 | @property |
| 359 | def lessons_path(self) -> Path: |
nothing calls this directly
no outgoing calls
no test coverage detected