Source code for template_for_python_projects.example.plus

[docs] def plus(a: int, b: int) -> int: """ This function returns the sum of two numbers. Very similar to :func:`template_for_python_projects.example.minus.minus` but returns the sum instead of the difference. :param a: an integer number :param b: another integer number :return: the sum of the two numbers `a` and `b` """ return a + b