Documentation

Main Scripts

Main Script Sample

Just a test to make sure Sphinx Docs works

mypypackage.main.test_function(a: int, b: int) → int[source]

Adds two numbers together

Parameters:
  • a (int) – Number 1
  • b (int) – Number 2
Returns:

Sum of both numbers

Return type:

int

Drivers

Sample Driver

Just a test to make sure Sphinx Docs works

mypypackage.drivers.sample_driver.test_function(a: int, b: int) → int[source]

Adds two numbers together

Parameters:
  • a (int) – Number 1
  • b (int) – Number 2
Returns:

Sum of both numbers

Return type:

int

Utilities

Sample Utility

Just a test to make sure Sphinx Docs works

mypypackage.utils.sample_util.test_function(a: int, b: int) → int[source]

Adds two numbers together

Parameters:
  • a (int) – Number 1
  • b (int) – Number 2
Returns:

Sum of both numbers

Return type:

int