`` /output/decks/ `` — one compiled deck's home.
(kb_dir: Path, deck_name: str)
| 25 | |
| 26 | |
| 27 | def deck_dir(kb_dir: Path, deck_name: str) -> Path: |
| 28 | """``<kb>/output/decks/<name>`` — one compiled deck's home.""" |
| 29 | return decks_root(kb_dir) / deck_name |
| 30 | |
| 31 | |
| 32 | def deck_workspace_dir(kb_dir: Path, deck_name: str) -> Path: |