Coverage for docs_src/parameter_types/number/tutorial002_an.py: 100%
6 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-09 18:26 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-09 18:26 +0000
1import typer 1habcdefg
2from typing_extensions import Annotated 1habcdefg
5def main( 1abcdefg
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}") 1habcdefg
11 print(f"--rank is {rank}") 1habcdefg
12 print(f"--score is {score}") 1habcdefg
15if __name__ == "__main__": 1habcdefg
16 typer.run(main) 1habcdefg