Add five

Example call

To increment the value of a number by five, use the add_five function.

from python_package_template import add_five

print(add_five(8))

Description of the add_five function:

python_package_template.add_five(x: int) int

Increment the input by 5.

Args:

x (int): The input number.

Returns:

int: The input incremented by 5.