`` /output/decks`` — the directory holding every compiled deck.
(kb_dir: Path)
| 20 | |
| 21 | |
| 22 | def decks_root(kb_dir: Path) -> Path: |
| 23 | """``<kb>/output/decks`` — the directory holding every compiled deck.""" |
| 24 | return kb_dir / "output" / "decks" |
| 25 | |
| 26 | |
| 27 | def deck_dir(kb_dir: Path, deck_name: str) -> Path: |
no outgoing calls