Coverage for docs_src/multiple_values/multiple_options/tutorial002.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-09 18:26 +0000

1from typing import List 1abcdefgh

2 

3import typer 1abcdefgh

4 

5 

6def main(number: List[float] = typer.Option([])): 1abcdefgh

7 print(f"The sum is {sum(number)}") 1abcdefgh

8 

9 

10if __name__ == "__main__": 1abcdefgh

11 typer.run(main) 1abcdefgh