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

5 statements  

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

1message = "Stuff" 1abcdefgh

2 

3 

4def say_stuff(): 1abcdefgh

5 print(message) 1abcdefgh

6 

7 

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

9 """ 

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

11 """ 

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