Source code for gegca.operations
"""
Operations
This module is just there to help with doc building etc. on
project creation. You will probably delete it early in the project.
"""
[docs]def add_two(a: float, b: float) -> float:
"""
Add two numbers
This is a function that is just there to help with doc building etc. on
project creation. You will probably delete it early in the project.
Parameters
----------
a
First number
b
Second number
Returns
-------
Sum of the numbers
Examples
--------
>>> add_two(1, 3)
4
>>> add_two(1, -3)
-2
"""
return a + b