Coverage for tests / assets / cli / extended_empty_app_cli.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-02-09 12:36 +0000

1import typer 1abcdefgh

2 

3cli = typer.Typer() 1abcdefgh

4sub_app = typer.Typer() 1abcdefgh

5cli.add_typer(sub_app) 1abcdefgh

6 

7 

8@sub_app.command() 1abcdefgh

9def hello(): 1abcdefgh

10 typer.echo("hello there") 1abcdefgh

11 

12 

13@sub_app.command() 1abcdefgh

14def bye(): 1abcdefgh

15 typer.echo("bye bye") 1abcdefgh