Coverage for harbor_cli/app.py: 100%
3 statements
« prev ^ index » next coverage.py v6.5.0, created at 2023-02-09 12:09 +0100
« prev ^ index » next coverage.py v6.5.0, created at 2023-02-09 12:09 +0100
1from __future__ import annotations
3import typer
5app = typer.Typer(
6 help="Harbor CLI",
7 pretty_exceptions_show_locals=False,
8 no_args_is_help=True,
9 # rich_markup_mode needs to be set here!
10 # Sub-commands will inherit this setting,
11 # but it has no effect if only set in sub-commands
12 rich_markup_mode="rich",
13)