Coverage for docs_src/parameter_types/number/tutorial002_an.py: 100%
6 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 id: Annotated[int, typer.Argument(min=0, max=1000)],
7 rank: Annotated[int, typer.Option(max=10, clamp=True)] = 0,
8 score: Annotated[float, typer.Option(min=0, max=100, clamp=True)] = 0,
9):
10 print(f"ID is {id}") 1iabcdefgh
11 print(f"--rank is {rank}") 1iabcdefgh
12 print(f"--score is {score}") 1iabcdefgh
15if __name__ == "__main__": 1iabcdefgh
16 typer.run(main) 1iabcdefgh