Args: a: The first argument b: The second argument Returns: The sum of a and b
(a: int, b: int = 5)
| 45 | |
| 46 | |
| 47 | def simple_function(a: int, b: int = 5): |
| 48 | """ |
| 49 | Args: |
| 50 | a: The first argument |
| 51 | b: The second argument |
| 52 | |
| 53 | Returns: |
| 54 | The sum of a and b |
| 55 | """ |
| 56 | return a + b |
| 57 | |
| 58 | |
| 59 | def test_simple_function(): |
no outgoing calls
no test coverage detected