Coverage for tests/assets/cli/extended_empty_app_cli.py: 100%
10 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
1import typer 1iabcdefgh
3cli = typer.Typer() 1iabcdefgh
4sub_app = typer.Typer() 1iabcdefgh
5cli.add_typer(sub_app) 1iabcdefgh
8@sub_app.command() 1iabcdefgh
9def hello(): 1abcdefgh
10 typer.echo("hello there") 1iabcdefgh
13@sub_app.command() 1iabcdefgh
14def bye(): 1abcdefgh
15 typer.echo("bye bye") 1iabcdefgh