Coverage for docs_src/first_steps/tutorial006.py: 100%
5 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
1import typer 1abcdefghi
4def main(name: str, lastname: str = "", formal: bool = False): 1abcdefghi
5 """
6 Say hi to NAME, optionally with a --lastname.
8 If --formal is used, say hi very formally.
9 """
10 if formal: 1abcdefghi
11 print(f"Good day Ms. {name} {lastname}.") 1abcdefghi
12 else:
13 print(f"Hello {name} {lastname}") 1abcdefghi
16if __name__ == "__main__": 1abcdefghi
17 typer.run(main) 1abcdefghi