List sections for a distro/release.
(ctx: click.Context, distro: str, release: str)
| 1126 | @click.argument("release") |
| 1127 | @click.pass_context |
| 1128 | def show_sections(ctx: click.Context, distro: str, release: str) -> None: |
| 1129 | """List sections for a distro/release.""" |
| 1130 | s = store.Store(_require_db(ctx, must_exist=True), read_only=True) |
| 1131 | for section in s.list_sections(distro, release): |
| 1132 | click.echo(section) |
| 1133 | |
| 1134 | |
| 1135 | @show.command("manpages") |
nothing calls this directly
no test coverage detected