Coverage for docs_src/options/prompt/tutorial003_an.py: 100%

4 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 project_name: Annotated[str, typer.Option(prompt=True, confirmation_prompt=True)], 

7): 

8 print(f"Deleting project {project_name}") 1iabcdefgh

9 

10 

11if __name__ == "__main__": 1iabcdefgh

12 typer.run(main) 1iabcdefgh