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

3 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-04-14 00:18 +0000

1import typer 1iabcdefgh

2 

3 

4def main( 1abcdefgh

5 name: str = typer.Argument( 

6 "Wade Wilson", help="Who to greet", show_default="Deadpoolio the amazing's name" 

7 ), 

8): 

9 print(f"Hello {name}") 1iabcdefgh

10 

11 

12if __name__ == "__main__": 1iabcdefgh

13 typer.run(main) 1iabcdefgh