Coverage for docs_src/arguments/help/tutorial007_an.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-09 18:26 +0000

1import typer 1habcdefg

2from typing_extensions import Annotated 1habcdefg

3 

4 

5def main( 1abcdefg

6 name: Annotated[str, typer.Argument(help="Who to greet")], 

7 lastname: Annotated[ 

8 str, typer.Argument(help="The last name", rich_help_panel="Secondary Arguments") 

9 ] = "", 

10 age: Annotated[ 

11 str, 

12 typer.Argument(help="The user's age", rich_help_panel="Secondary Arguments"), 

13 ] = "", 

14): 

15 """ 

16 Say hi to NAME very gently, like Dirk. 

17 """ 

18 print(f"Hello {name}") 1habcdefg

19 

20 

21if __name__ == "__main__": 1habcdefg

22 typer.run(main) 1habcdefg