Coverage for src / testy / add.py: 0%
2 statements
« prev ^ index » next coverage.py v7.12.0, created at 2025-12-08 06:47 +0000
« prev ^ index » next coverage.py v7.12.0, created at 2025-12-08 06:47 +0000
1"""Simple addition module.
3This module provides a basic addition function.
4"""
7def add(x, y):
8 """Add two numbers together.
10 Args:
11 x: First number
12 y: Second number
14 Returns:
15 The sum of x and y
16 """
17 return x + y