()
| 243 | |
| 244 | |
| 245 | def read_state() -> dict[str, Any]: |
| 246 | if not STATE_PATH.exists(): |
| 247 | raise FileNotFoundError("State not found. Run: scripts/afml_docs_loop.py init") |
| 248 | return json.loads(STATE_PATH.read_text(encoding="utf-8")) |
| 249 | |
| 250 | |
| 251 | def recompute_chapter_status(chapter: dict[str, Any]) -> str: |
no outgoing calls
no test coverage detected