Coverage for docs_src/options/help/tutorial003.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.5.4, created at 2024-06-24 00:17 +0000

1import typer 1abcdefgh

2 

3 

4def main(fullname: str = typer.Option("Wade Wilson", show_default=False)): 1abcdefgh

5 print(f"Hello {fullname}") 1abcdefgh

6 

7 

8if __name__ == "__main__": 1abcdefgh

9 typer.run(main) 1abcdefgh