Return {src: dst} for all mappings in the store.
(self, store: Store)
| 467 | ) |
| 468 | |
| 469 | def _get_mappings(self, store: Store) -> dict[str, str]: |
| 470 | """Return {src: dst} for all mappings in the store.""" |
| 471 | return {src: dst for src, dst in store.mappings()} |
| 472 | |
| 473 | def _get_subcommands(self, store: Store, source: str) -> list[str]: |
| 474 | """Read the subcommands list for a manpage from the DB.""" |