Coverage for src/testy/add.py: 0%

2 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-10-21 04:58 +0000

1"""Simple addition module. 

2 

3This module provides a basic addition function. 

4""" 

5 

6 

7def add(x, y): 

8 """Add two numbers together. 

9 

10 Args: 

11 x: First number 

12 y: Second number 

13 

14 Returns: 

15 The sum of x and y 

16 """ 

17 return x + y