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

6 statements  

« 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

3 

4 

5def main( 1abcdefg

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}") 1habcdefg

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

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

13 

14 

15if __name__ == "__main__": 1habcdefg

16 typer.run(main) 1habcdefg