(note_path: Path, plan_file: str)
| 219 | |
| 220 | |
| 221 | def resolve_note_plan_path(note_path: Path, plan_file: str) -> Path: |
| 222 | if plan_file: |
| 223 | return Path(plan_file).expanduser().resolve() |
| 224 | return note_path.with_suffix(".plan.json") |
| 225 | |
| 226 | |
| 227 | def inspect_note_plan(plan_path: Path) -> tuple[bool, list[str]]: |