Source code for mypypackage.main
"""
Main Script Sample
====================
Just a test to make sure Sphinx Docs works
"""
[docs]def test_function(a:int, b:int) -> int:
"""Adds two numbers together
Args:
a (int): Number 1
b (int): Number 2
Returns:
int: Sum of both numbers
"""
return a + b