Source code for mypypackage.drivers.sample_driver
"""
Sample Driver
===============
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