Coverage for docs_src/arguments/help/tutorial007_an.py: 100%
4 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
1import typer 1iabcdefgh
2from typing_extensions import Annotated 1iabcdefgh
5def main( 1abcdefgh
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}") 1iabcdefgh
21if __name__ == "__main__": 1iabcdefgh
22 typer.run(main) 1iabcdefgh