Coverage for tests/assets/cli/multi_func.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-04-14 00:18 +0000

1message = "Stuff" 1abcdefghi

2 

3 

4def say_stuff(): 1abcdefghi

5 print(message) 1abcdefghi

6 

7 

8def main(name: str = "World"): 1abcdefghi

9 """ 

10 Say hi to someone, by default to the World. 

11 """ 

12 print(f"Hello {name}") 1abcdefghi