Coverage for docs_src / printing / tutorial005_py39.py: 100%

10 statements  

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

1import typer 1abcdefgh

2 

3app = typer.Typer() 1abcdefgh

4 

5 

6@app.command() 1abcdefgh

7def main(good: bool = True): 1abcdefgh

8 message_start = "everything is " 1abcdefgh

9 if good: 1abcdefgh

10 ending = typer.style("good", fg=typer.colors.GREEN, bold=True) 1abcdefgh

11 else: 

12 ending = typer.style("bad", fg=typer.colors.WHITE, bg=typer.colors.RED) 1abcdefgh

13 message = message_start + ending 1abcdefgh

14 typer.echo(message) 1abcdefgh

15 

16 

17if __name__ == "__main__": 1abcdefgh

18 app() 1abcdefgh