Coverage for docs_src/parameter_types/file/tutorial001.py: 100%

4 statements  

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

1import typer 1abcdefgh

2 

3 

4def main(config: typer.FileText = typer.Option(...)): 1abcdefgh

5 for line in config: 1abcdefgh

6 print(f"Config line: {line}") 1abcdefgh

7 

8 

9if __name__ == "__main__": 1abcdefgh

10 typer.run(main) 1abcdefgh