Coverage for docs_src/options/prompt/tutorial002_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: str,
7 lastname: Annotated[str, typer.Option(prompt="Please tell me your last name")],
8):
9 print(f"Hello {name} {lastname}") 1iabcdefgh
12if __name__ == "__main__": 1iabcdefgh
13 typer.run(main) 1iabcdefgh