Coverage for docs_src/parameter_types/number/tutorial001_an.py: 100%

6 statements  

« 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

3 

4 

5def main( 1abcdefgh

6 id: Annotated[int, typer.Argument(min=0, max=1000)], 

7 age: Annotated[int, typer.Option(min=18)] = 20, 

8 score: Annotated[float, typer.Option(max=100)] = 0, 

9): 

10 print(f"ID is {id}") 1iabcdefgh

11 print(f"--age is {age}") 1iabcdefgh

12 print(f"--score is {score}") 1iabcdefgh

13 

14 

15if __name__ == "__main__": 1iabcdefgh

16 typer.run(main) 1iabcdefgh