Source code for mypypackage.utils.sample_util

"""
Sample Utility
================

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